diff options
Diffstat (limited to 'cucumber/features')
-rw-r--r-- | cucumber/features/install.feature | 8 | ||||
-rw-r--r-- | cucumber/features/step_definitions/common_steps.rb | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/cucumber/features/install.feature b/cucumber/features/install.feature index 3403d149..6dc4ba0d 100644 --- a/cucumber/features/install.feature +++ b/cucumber/features/install.feature @@ -44,3 +44,11 @@ Feature: Doing variations on d-i installs When I start the computer Then I select the install mode + @preseed + Scenario: Preseed using hands.com with checksum + Given a disk is created for Debian Installer tests + And I intend to use gui mode + And I intend to boot with options "auto=true priority=critical url=hands.com classes=jenkins.debian.org/pb10;loc/gb;hands.com/general-tweaks;setup/users;desktop/lxde DEBCONF_DEBUG=5" + When I start the computer + And I select the install mode + Then I should see a XFCE Login prompt diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb index c59d8e26..88af0a22 100644 --- a/cucumber/features/step_definitions/common_steps.rb +++ b/cucumber/features/step_definitions/common_steps.rb @@ -190,7 +190,7 @@ Given /^I capture all network traffic$/ do end end -Given /^I set Tails to boot with options "([^"]*)"$/ do |options| +Given /^I intend to boot with options "([^"]*)"$/ do |options| @boot_options = options end |