Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Fixed rspec tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke committed Jan 16, 2016
1 parent 87e2e01 commit e3199d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/classes/server_debian_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
context "mountd params set" do
let(:params) {{ :mountd_port => '4711' }}
it do
should contain_shellvar('rpc-mount-options') #.with( 'ensure' => 'present' )
should contain_file_line('rpc-mount-options') #.with( 'ensure' => 'present' )
end

end
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/server_redhat_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
context "mountd params set" do
let(:params) {{ :mountd_port => '4711' }}
it do
should contain_shellvar('rpc-mount-options') #.with( 'ensure' => 'present' )
should contain_file_line('rpc-mount-options') #.with( 'ensure' => 'present' )
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/server_ubuntu_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
context "mountd params set" do
let(:params) {{ :mountd_port => '4711' }}
it do
should contain_shellvar('rpc-mount-options') #.with( 'ensure' => 'present' )
should contain_file_line('rpc-mount-options') #.with( 'ensure' => 'present' )
end

end
Expand Down

0 comments on commit e3199d3

Please sign in to comment.