4ed9cb5099
A lot of the tests were testing things that really should be tested via unit tests, so those were deleted and unit tests will be revamped to make sure they are covering everything they need to be covering.
17 řádky
385 B
Ruby
17 řádky
385 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'apt class' do
|
|
|
|
context 'default parameters' do
|
|
# Using puppet_apply as a helper
|
|
it 'should work 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_failures => true)
|
|
end
|
|
end
|
|
end
|