Land #6267, the rest of the rspec3 updates

bug/bundler_fix 4.11.8
Brent Cook 2016-01-29 11:36:58 -06:00
commit c0ed57db43
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ EOF
it "enumerates the groups" do
groups = []
ini.each_group { |group| groups << group }
groups.should eq(%w(foo bar baf))
expect(groups).to eq(%w(foo bar baf))
end
end
@ -28,7 +28,7 @@ EOF
it "enumerates the groups" do
groups = []
ini.each_key.map { |group| groups << group }
groups.should eq(%w(foo bar baf))
expect(groups).to eq(%w(foo bar baf))
end
end
end