public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Search Repo:
Mark JRuby as not deviating from MRI on unboundmethod specs.
vvs (author)
Mon Feb 11 20:33:49 -0800 2008
commit  60fbbc62cb04b2fddcd406f01f906482fbc84370
tree    71b8a91b68e6ce1b989526f1118749b5097790fc
parent  4e6d8f7e3326f937a6916ed11984172670a71094
...
64
65
66
67
 
68
69
70
...
91
92
93
94
95
 
 
96
97
98
...
64
65
66
 
67
68
69
70
...
91
92
93
 
 
94
95
96
97
98
0
@@ -64,7 +64,7 @@ describe "UnboundMethod#==" do
0
   end
0
 
0
   # See below for MRI
0
- deviates_on :rubinius, :jruby do
0
+ deviates_on :rubinius do
0
     it "returns true if same method extracted from super- and subclass" do
0
       (@parent == @child1).should == true
0
       (@child1 == @parent).should == true
0
@@ -91,8 +91,8 @@ describe "UnboundMethod#==" do
0
     (@identical_body == @original_name).should == false
0
   end
0
 
0
- # See above for Rubinius, JRuby
0
- not_compliant_on :rubinius, :jruby do
0
+ # See above for Rubinius
0
+ not_compliant_on :rubinius do
0
     it "returns false if same method but one extracted from a subclass" do
0
       (@parent == @child1).should == false
0
       (@child1 == @parent).should == false

Comments

    No one has commented yet.