summaryrefslogtreecommitdiff
path: root/spec/acceptance/apt_spec.rb
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2017-10-11 16:05:28 -0400
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2017-10-11 16:05:28 -0400
commit6b12caf4f6310bd6695ef5676387658fb444778a (patch)
tree712fdd80581bd81cb78bf6ce5909726deb483e54 /spec/acceptance/apt_spec.rb
parenta37622be65ff288f0b22ca0412521eb186a87e23 (diff)
remove apt-specific tests
Diffstat (limited to 'spec/acceptance/apt_spec.rb')
-rw-r--r--spec/acceptance/apt_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb
deleted file mode 100644
index a976a56..0000000
--- a/spec/acceptance/apt_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'spec_helper_acceptance'
-
-describe 'apt class' do
-
- context 'default parameters' do
- it 'should work idempotently with no errors' do
- pp = <<-EOS
- class { 'apt': }
- EOS
-
- # Run it twice and test for idempotency
- apply_manifest(pp, :catch_failures => true)
- apply_manifest(pp, :catch_changes => true)
- end
-
- describe package('apt') do
- it { is_expected.to be_installed }
- end
-
- end
-end