From d35d0993c1b3cdb98092e955e98661a38964548b Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Fri, 29 Jan 2016 11:36:38 -0600 Subject: [PATCH] should -> expect --- spec/lib/rex/parser/ini_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/lib/rex/parser/ini_spec.rb b/spec/lib/rex/parser/ini_spec.rb index 2a0dc4280c..a1ecba7b15 100644 --- a/spec/lib/rex/parser/ini_spec.rb +++ b/spec/lib/rex/parser/ini_spec.rb @@ -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