should -> expect

bug/bundler_fix
Brent Cook 2016-01-29 11:36:38 -06:00
parent 8c94d3c1bd
commit d35d0993c1
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