Skip to content

Commit

Permalink
Merge pull request #433 from jonnangle/fix_db4fe89_group_tests
Browse files Browse the repository at this point in the history
Update tests to work with commit db4fe89 in specinfra
  • Loading branch information
mizzy committed Jun 29, 2014
2 parents 27dca22 + 30a022a commit 18603dc
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion spec/aix/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/darwin/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/debian/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/fedora/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/freebsd/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/gentoo/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/plamo/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/redhat/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/solaris/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down
2 changes: 1 addition & 1 deletion spec/solaris11/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe group('root') do
it { should exist }
its(:command) { should eq "getent group | grep -wq -- root" }
its(:command) { should eq "getent group root" }
end

describe group('invalid-group') do
Expand Down

0 comments on commit 18603dc

Please sign in to comment.