summaryrefslogtreecommitdiffstats
path: root/spec/ecore_input_spec.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-05-01 21:57:51 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-05-01 21:57:51 +0200
commit384be4b3aacbb84801f2cf585ec4ecc97d975730 (patch)
treee80f803f3c8514dd97da84186fc2a57d3d83ce18 /spec/ecore_input_spec.rb
parentd0b20b515e55dad3328191984bce5c898193446d (diff)
downloadffi-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.rb12
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