puppet-swift/spec/classes/swift_repo_trunk_spec.rb

23 lines
441 B
Ruby

require 'spec_helper'
describe 'swift::repo::trunk' do
let :facts do
{:lsbdistcodename => 'oneiric'}
end
describe 'when apt is not included' do
it 'should raise an error' do
expect do
subject
end.should raise_error(Puppet::Error)
end
end
describe 'when apt is included' do
let :pre_condition do
'include apt'
end
it { should contain_apt__ppa('ppa:swift-core/trunk') }
end
end