diff --git a/spec/cli_spec.rb b/spec/cli_spec.rb index 52117189..f3388491 100644 --- a/spec/cli_spec.rb +++ b/spec/cli_spec.rb @@ -17,7 +17,7 @@ describe Pry::Hooks do # irrelevant end end.parse_options(argv) - argv.include?('-v').should == false + argv.include?('-v').should eq false end end @@ -31,7 +31,7 @@ describe Pry::Hooks do end end.parse_options(["--optiontest"]) - run.should == true + run.should eq true end it "should be able to add multiple options" do @@ -64,7 +64,7 @@ describe Pry::Hooks do run = true if opts.present?(:optiontest) end.parse_options(["--optiontest"]) - run.should == true + run.should eq true end it "should be able to process multiple options" do @@ -80,8 +80,8 @@ describe Pry::Hooks do run2 = true if opts.present?(:optiontest2) end.parse_options(["--optiontest", "--optiontest2"]) - run.should == true - run2.should == true + run.should eq true + run2.should eq true end end