Remove ppa rspec code

This commit removes the ppa specs since the classes
containing the ppas have been removed.
This commit is contained in:
Dan Bode 2012-04-22 12:12:07 -07:00
parent 24a01d1bea
commit 047cb81ff3
2 changed files with 0 additions and 44 deletions

@ -1,22 +0,0 @@
require 'spec_helper'
describe 'swift::repo::milestone' 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/milestone') }
end
end

@ -1,22 +0,0 @@
require 'spec_helper'
describe 'swift::repo::release' 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/release') }
end
end