summaryrefslogtreecommitdiff
path: root/spec/hosts/with_lens_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/hosts/with_lens_spec.rb')
-rw-r--r--spec/hosts/with_lens_spec.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/spec/hosts/with_lens_spec.rb b/spec/hosts/with_lens_spec.rb
index 10437c9..e0f5dff 100644
--- a/spec/hosts/with_lens_spec.rb
+++ b/spec/hosts/with_lens_spec.rb
@@ -15,10 +15,10 @@ describe 'with_lens' do
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
} }
- it { should contain_file('/usr/share/augeas/lenses/foo.aug') }
- it { should contain_exec('Typecheck lens foo') }
- it { should_not contain_file('/usr/share/augeas/lenses/tests/test_foo.aug') }
- it { should_not contain_exec('Test lens foo') }
+ it { is_expected.to contain_file('/usr/share/augeas/lenses/foo.aug') }
+ it { is_expected.to contain_exec('Typecheck lens foo') }
+ it { is_expected.not_to contain_file('/usr/share/augeas/lenses/tests/test_foo.aug') }
+ it { is_expected.not_to contain_exec('Test lens foo') }
end
context 'when lens_source and test_source are passed' do
@@ -30,10 +30,10 @@ describe 'with_lens' do
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
} }
- it { should contain_file('/usr/share/augeas/lenses/foo.aug') }
- it { should contain_exec('Typecheck lens foo') }
- it { should contain_file('/usr/share/augeas/lenses/tests/test_foo.aug') }
- it { should contain_exec('Test lens foo') }
+ it { is_expected.to contain_file('/usr/share/augeas/lenses/foo.aug') }
+ it { is_expected.to contain_exec('Typecheck lens foo') }
+ it { is_expected.to contain_file('/usr/share/augeas/lenses/tests/test_foo.aug') }
+ it { is_expected.to contain_exec('Test lens foo') }
end
context 'when stock_since is passed and augeas is older' do
@@ -46,8 +46,8 @@ describe 'with_lens' do
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
} }
- it { should contain_file('/usr/share/augeas/lenses/foo.aug') }
- it { should contain_exec('Typecheck lens foo') }
+ it { is_expected.to contain_file('/usr/share/augeas/lenses/foo.aug') }
+ it { is_expected.to contain_exec('Typecheck lens foo') }
end
context 'when stock_since is passed and augeas is newer' do
@@ -60,7 +60,7 @@ describe 'with_lens' do
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
} }
- it { should_not contain_file('/usr/share/augeas/lenses/foo.aug') }
- it { should_not contain_exec('Typecheck lens foo') }
+ it { is_expected.not_to contain_file('/usr/share/augeas/lenses/foo.aug') }
+ it { is_expected.not_to contain_exec('Typecheck lens foo') }
end
end