0ee1b9a2ea
This conversion is done by Transpec 2.3.1 with the following command: transpec -f -c "bundle exec rake spec" * 82 conversions from: it { should ... } to: it { is_expected.to ... } * 21 conversions from: == expected to: eq(expected) * 20 conversions from: obj.should to: expect(obj).to * 5 conversions from: its([:key]) { } to: describe '[:key]' do subject { super()[:key] }; it { } end * 1 conversion from: it { should_not ... } to: it { is_expected.not_to ... } * 1 conversion from: its(:attr) { } to: describe '#attr' do subject { super().attr }; it { } end For more details: https://github.com/yujinakayama/transpec#supported-conversions
44 lines
1 KiB
Ruby
44 lines
1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::server::contrib', :type => :class do
|
|
let :pre_condition do
|
|
"class { 'postgresql::server': }"
|
|
end
|
|
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '6.0',
|
|
:kernel => 'Linux',
|
|
:concat_basedir => tmpfilename('contrib'),
|
|
:id => 'root',
|
|
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
|
}
|
|
end
|
|
|
|
describe 'with parameters' do
|
|
let(:params) do
|
|
{
|
|
:package_name => 'mypackage',
|
|
:package_ensure => 'absent',
|
|
}
|
|
end
|
|
|
|
it 'should create package with correct params' do
|
|
is_expected.to contain_package('postgresql-contrib').with({
|
|
:ensure => 'absent',
|
|
:name => 'mypackage',
|
|
:tag => 'postgresql',
|
|
})
|
|
end
|
|
end
|
|
|
|
describe 'with no parameters' do
|
|
it 'should create package with postgresql tag' do
|
|
is_expected.to contain_package('postgresql-contrib').with({
|
|
:tag => 'postgresql',
|
|
})
|
|
end
|
|
end
|
|
end
|