diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-01 21:57:51 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-01 21:57:51 +0200 |
commit | 384be4b3aacbb84801f2cf585ec4ecc97d975730 (patch) | |
tree | e80f803f3c8514dd97da84186fc2a57d3d83ce18 /spec/ecore_input_spec.rb | |
parent | d0b20b515e55dad3328191984bce5c898193446d (diff) | |
download | ffi-efl-384be4b3aacbb84801f2cf585ec4ecc97d975730.zip ffi-efl-384be4b3aacbb84801f2cf585ec4ecc97d975730.tar.gz |
specs : use == instead of eql
Diffstat (limited to 'spec/ecore_input_spec.rb')
-rw-r--r-- | spec/ecore_input_spec.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/ecore_input_spec.rb b/spec/ecore_input_spec.rb index 095d11a..51f23a8 100644 --- a/spec/ecore_input_spec.rb +++ b/spec/ecore_input_spec.rb @@ -10,15 +10,15 @@ describe Efl::EcoreInput do end # it "should init" do - EcoreInput.init.should eql 1 - EcoreInput.init.should eql 2 - EcoreInput.init.should eql 3 + EcoreInput.init.should == 1 + EcoreInput.init.should == 2 + EcoreInput.init.should == 3 end # it "should shutdown" do - EcoreInput.shutdown.should eql 2 - EcoreInput.shutdown.should eql 1 - EcoreInput.shutdown.should eql 0 + EcoreInput.shutdown.should == 2 + EcoreInput.shutdown.should == 1 + EcoreInput.shutdown.should == 0 end # end |