X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fppa_spec.rb;h=e10481ef8d4ef30374f7d4b2ec01a1665dcfd9a7;hb=61080fb6760e3d28b04158a3a2e1f3a055a2854e;hp=3a4c381f6746f794ff037c284bb20766a2ba8145;hpb=5d96da0c6aac8f0f9192fe6ce63548bdaee149b5;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/ppa_spec.rb b/spec/defines/ppa_spec.rb index 3a4c381..e10481e 100644 --- a/spec/defines/ppa_spec.rb +++ b/spec/defines/ppa_spec.rb @@ -67,41 +67,6 @@ describe 'apt::ppa', :type => :define do } end - describe 'apt included, proxy' do - let :pre_condition do - 'class { "apt": proxy_host => "example.com" }' - end - let :facts do - { - :lsbdistrelease => '14.04', - :lsbdistcodename => 'trusty', - :operatingsystem => 'Ubuntu', - :lsbdistid => 'Ubuntu', - :osfamily => 'Debian', - } - end - let :params do - { - 'release' => 'lucid', - } - end - let(:title) { 'ppa:foo' } - it { is_expected.to contain_package('software-properties-common') } - it { is_expected.to contain_exec('add-apt-repository-ppa:foo').that_notifies('Exec[apt_update]').with({ - 'environment' => ['http_proxy=http://example.com:8080', 'https_proxy=http://example.com:8080'], - 'command' => '/usr/bin/add-apt-repository -y ppa:foo', - 'unless' => '/usr/bin/test -s /etc/apt/sources.list.d/foo-lucid.list', - 'user' => 'root', - 'logoutput' => 'on_failure', - }) - } - - it { is_expected.to contain_file('/etc/apt/sources.list.d/foo-lucid.list').that_requires('Exec[add-apt-repository-ppa:foo]').with({ - 'ensure' => 'file', - }) - } - end - describe 'ensure absent' do let :facts do {