diff options
-rw-r--r-- | features/DebianLive7/apt.feature | 19 | ||||
-rw-r--r-- | job-cfg/lvc.yaml | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/features/DebianLive7/apt.feature b/features/DebianLive7/apt.feature new file mode 100644 index 00000000..c2d700f8 --- /dev/null +++ b/features/DebianLive7/apt.feature @@ -0,0 +1,19 @@ +@product +Feature: Installing packages through APT + As a Tails user + I should be able to install packages using APT + + Background: + Given a computer + And I capture all network traffic + And I start the computer + And the computer boots DebianLive7 + And I save the state so the background can be restored next scenario + + Scenario: APT sources are configured correctly + Then the only hosts in APT sources are "ftp.us.debian.org,security.debian.org,backports.debian.org,deb.tails.boum.org,deb.torproject.org,mozilla.debian.net" + + Scenario: Install packages using apt-get + When I update APT using apt-get + Then I should be able to install a package using apt-get + diff --git a/job-cfg/lvc.yaml b/job-cfg/lvc.yaml index 39ddc11b..81764fe5 100644 --- a/job-cfg/lvc.yaml +++ b/job-cfg/lvc.yaml @@ -40,6 +40,6 @@ jobs: - '{name}_debian-live_squeeze': my_time: '23 45 31 12 *' - my_params: '--capture lvc_debian-live_squeeze.webm --iso /var/lib/jenkins/debian-live-7.6.0-amd64-standard.iso apt.feature' + my_params: '--capture lvc_debian-live_squeeze.webm --iso /var/lib/jenkins/debian-live-7.6.0-amd64-standard.iso DebianLive7/apt.feature' my_description: 'Work in progress...' |