2012-08-02 07:34:19 -04:00
|
|
|
require 'test/unit'
|
2012-11-10 23:45:31 -05:00
|
|
|
require_relative 'envutil'
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-07 00:02:21 -05:00
|
|
|
EnvUtil.suppress_warning {require "refinement"}
|
2012-12-06 09:31:43 -05:00
|
|
|
|
2012-08-02 07:34:19 -04:00
|
|
|
class TestRefinement < Test::Unit::TestCase
|
|
|
|
class Foo
|
|
|
|
def x
|
|
|
|
return "Foo#x"
|
|
|
|
end
|
|
|
|
|
|
|
|
def y
|
|
|
|
return "Foo#y"
|
|
|
|
end
|
|
|
|
|
* fix the behavior when a module is included into a refinement.
This change is a little tricky, so it might be better to prohibit
module inclusion to refinements.
* include/ruby/ruby.h (RMODULE_INCLUDED_INTO_REFINEMENT): new flag
to represent that a module (iclass) is included into a refinement.
* class.c (include_modules_at): set RMODULE_INCLUDED_INTO_REFINEMENT
if klass is a refinement.
* eval.c (rb_mod_refine): set the superclass of a refinement to the
refined class for super.
* eval.c (rb_using_refinement): skip the above superclass (the
refined class) when creating iclasses for refinements. Otherwise,
`using Refinement1; using Refinement2' creates iclasses:
<Refinement2> -> <RefinedClass> -> <Refinement1> -> RefinedClass,
where <Module> is an iclass for Module, so RefinedClass is
searched before Refinement1. The correct iclasses should be
<Refinement2> -> <Refinement1> -> RefinedClass.
* vm_insnhelper.c (vm_search_normal_superclass): if klass is an
iclass for a refinement, use the refinement's superclass instead
of the iclass's superclass. Otherwise, multiple refinements are
searched by super. For example, if a refinement Refinement2
includes a module M (i.e., Refinement2 -> <M> -> RefinedClass,
and if refinements iclasses are <Refinement2> -> <M>' ->
<Refinement1> -> RefinedClass, then super in <Refinement2> should
use Refinement2's superclass <M> instead of <Refinement2>'s
superclass <M>'.
* vm_insnhelper.c (vm_search_super_method): do not raise a
NotImplementError if current_defind_class is a module included
into a refinement. Because of the change of
vm_search_normal_superclass(), the receiver might not be an
instance of the module('s iclass).
* test/ruby/test_refinement.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-10 11:05:45 -05:00
|
|
|
def a
|
|
|
|
return "Foo#a"
|
|
|
|
end
|
|
|
|
|
2012-08-02 07:34:19 -04:00
|
|
|
def call_x
|
|
|
|
return x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module FooExt
|
|
|
|
refine Foo do
|
|
|
|
def x
|
|
|
|
return "FooExt#x"
|
|
|
|
end
|
|
|
|
|
|
|
|
def y
|
|
|
|
return "FooExt#y " + super
|
|
|
|
end
|
|
|
|
|
|
|
|
def z
|
|
|
|
return "FooExt#z"
|
|
|
|
end
|
* fix the behavior when a module is included into a refinement.
This change is a little tricky, so it might be better to prohibit
module inclusion to refinements.
* include/ruby/ruby.h (RMODULE_INCLUDED_INTO_REFINEMENT): new flag
to represent that a module (iclass) is included into a refinement.
* class.c (include_modules_at): set RMODULE_INCLUDED_INTO_REFINEMENT
if klass is a refinement.
* eval.c (rb_mod_refine): set the superclass of a refinement to the
refined class for super.
* eval.c (rb_using_refinement): skip the above superclass (the
refined class) when creating iclasses for refinements. Otherwise,
`using Refinement1; using Refinement2' creates iclasses:
<Refinement2> -> <RefinedClass> -> <Refinement1> -> RefinedClass,
where <Module> is an iclass for Module, so RefinedClass is
searched before Refinement1. The correct iclasses should be
<Refinement2> -> <Refinement1> -> RefinedClass.
* vm_insnhelper.c (vm_search_normal_superclass): if klass is an
iclass for a refinement, use the refinement's superclass instead
of the iclass's superclass. Otherwise, multiple refinements are
searched by super. For example, if a refinement Refinement2
includes a module M (i.e., Refinement2 -> <M> -> RefinedClass,
and if refinements iclasses are <Refinement2> -> <M>' ->
<Refinement1> -> RefinedClass, then super in <Refinement2> should
use Refinement2's superclass <M> instead of <Refinement2>'s
superclass <M>'.
* vm_insnhelper.c (vm_search_super_method): do not raise a
NotImplementError if current_defind_class is a module included
into a refinement. Because of the change of
vm_search_normal_superclass(), the receiver might not be an
instance of the module('s iclass).
* test/ruby/test_refinement.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-10 11:05:45 -05:00
|
|
|
|
|
|
|
def a
|
|
|
|
return "FooExt#a"
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module FooExt2
|
|
|
|
refine Foo do
|
|
|
|
def x
|
|
|
|
return "FooExt2#x"
|
|
|
|
end
|
|
|
|
|
|
|
|
def y
|
|
|
|
return "FooExt2#y " + super
|
|
|
|
end
|
|
|
|
|
|
|
|
def z
|
|
|
|
return "FooExt2#z"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class FooSub < Foo
|
|
|
|
def x
|
|
|
|
return "FooSub#x"
|
|
|
|
end
|
|
|
|
|
|
|
|
def y
|
|
|
|
return "FooSub#y " + super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
eval <<-EOF, TOPLEVEL_BINDING
|
|
|
|
using TestRefinement::FooExt
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
class TestRefinement::FooExtClient
|
|
|
|
def self.invoke_x_on(foo)
|
|
|
|
return foo.x
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
def self.invoke_y_on(foo)
|
|
|
|
return foo.y
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
def self.invoke_z_on(foo)
|
|
|
|
return foo.z
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
def self.send_z_on(foo)
|
|
|
|
return foo.send(:z)
|
|
|
|
end
|
2012-11-02 20:09:26 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
def self.method_z(foo)
|
|
|
|
return foo.method(:z)
|
|
|
|
end
|
2012-11-02 20:09:26 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
def self.invoke_call_x_on(foo)
|
|
|
|
return foo.call_x
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
2012-12-06 10:12:36 -05:00
|
|
|
EOF
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
eval <<-EOF, TOPLEVEL_BINDING
|
|
|
|
using TestRefinement::FooExt
|
|
|
|
using TestRefinement::FooExt2
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
class TestRefinement::FooExtClient2
|
|
|
|
def self.invoke_y_on(foo)
|
|
|
|
return foo.y
|
|
|
|
end
|
* fix the behavior when a module is included into a refinement.
This change is a little tricky, so it might be better to prohibit
module inclusion to refinements.
* include/ruby/ruby.h (RMODULE_INCLUDED_INTO_REFINEMENT): new flag
to represent that a module (iclass) is included into a refinement.
* class.c (include_modules_at): set RMODULE_INCLUDED_INTO_REFINEMENT
if klass is a refinement.
* eval.c (rb_mod_refine): set the superclass of a refinement to the
refined class for super.
* eval.c (rb_using_refinement): skip the above superclass (the
refined class) when creating iclasses for refinements. Otherwise,
`using Refinement1; using Refinement2' creates iclasses:
<Refinement2> -> <RefinedClass> -> <Refinement1> -> RefinedClass,
where <Module> is an iclass for Module, so RefinedClass is
searched before Refinement1. The correct iclasses should be
<Refinement2> -> <Refinement1> -> RefinedClass.
* vm_insnhelper.c (vm_search_normal_superclass): if klass is an
iclass for a refinement, use the refinement's superclass instead
of the iclass's superclass. Otherwise, multiple refinements are
searched by super. For example, if a refinement Refinement2
includes a module M (i.e., Refinement2 -> <M> -> RefinedClass,
and if refinements iclasses are <Refinement2> -> <M>' ->
<Refinement1> -> RefinedClass, then super in <Refinement2> should
use Refinement2's superclass <M> instead of <Refinement2>'s
superclass <M>'.
* vm_insnhelper.c (vm_search_super_method): do not raise a
NotImplementError if current_defind_class is a module included
into a refinement. Because of the change of
vm_search_normal_superclass(), the receiver might not be an
instance of the module('s iclass).
* test/ruby/test_refinement.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-10 11:05:45 -05:00
|
|
|
|
|
|
|
def self.invoke_a_on(foo)
|
|
|
|
return foo.a
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
2012-12-06 10:12:36 -05:00
|
|
|
EOF
|
2012-08-02 07:34:19 -04:00
|
|
|
|
|
|
|
def test_override
|
|
|
|
foo = Foo.new
|
|
|
|
assert_equal("Foo#x", foo.x)
|
|
|
|
assert_equal("FooExt#x", FooExtClient.invoke_x_on(foo))
|
|
|
|
assert_equal("Foo#x", foo.x)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_super
|
|
|
|
foo = Foo.new
|
|
|
|
assert_equal("Foo#y", foo.y)
|
|
|
|
assert_equal("FooExt#y Foo#y", FooExtClient.invoke_y_on(foo))
|
|
|
|
assert_equal("Foo#y", foo.y)
|
|
|
|
end
|
|
|
|
|
2012-12-07 22:36:58 -05:00
|
|
|
def test_super_not_chained
|
2012-08-02 07:34:19 -04:00
|
|
|
foo = Foo.new
|
|
|
|
assert_equal("Foo#y", foo.y)
|
2012-12-07 22:36:58 -05:00
|
|
|
assert_equal("FooExt2#y Foo#y", FooExtClient2.invoke_y_on(foo))
|
2012-08-02 07:34:19 -04:00
|
|
|
assert_equal("Foo#y", foo.y)
|
|
|
|
end
|
|
|
|
|
* fix the behavior when a module is included into a refinement.
This change is a little tricky, so it might be better to prohibit
module inclusion to refinements.
* include/ruby/ruby.h (RMODULE_INCLUDED_INTO_REFINEMENT): new flag
to represent that a module (iclass) is included into a refinement.
* class.c (include_modules_at): set RMODULE_INCLUDED_INTO_REFINEMENT
if klass is a refinement.
* eval.c (rb_mod_refine): set the superclass of a refinement to the
refined class for super.
* eval.c (rb_using_refinement): skip the above superclass (the
refined class) when creating iclasses for refinements. Otherwise,
`using Refinement1; using Refinement2' creates iclasses:
<Refinement2> -> <RefinedClass> -> <Refinement1> -> RefinedClass,
where <Module> is an iclass for Module, so RefinedClass is
searched before Refinement1. The correct iclasses should be
<Refinement2> -> <Refinement1> -> RefinedClass.
* vm_insnhelper.c (vm_search_normal_superclass): if klass is an
iclass for a refinement, use the refinement's superclass instead
of the iclass's superclass. Otherwise, multiple refinements are
searched by super. For example, if a refinement Refinement2
includes a module M (i.e., Refinement2 -> <M> -> RefinedClass,
and if refinements iclasses are <Refinement2> -> <M>' ->
<Refinement1> -> RefinedClass, then super in <Refinement2> should
use Refinement2's superclass <M> instead of <Refinement2>'s
superclass <M>'.
* vm_insnhelper.c (vm_search_super_method): do not raise a
NotImplementError if current_defind_class is a module included
into a refinement. Because of the change of
vm_search_normal_superclass(), the receiver might not be an
instance of the module('s iclass).
* test/ruby/test_refinement.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-10 11:05:45 -05:00
|
|
|
def test_using_same_class_refinements
|
|
|
|
foo = Foo.new
|
|
|
|
assert_equal("Foo#a", foo.a)
|
|
|
|
assert_equal("FooExt#a", FooExtClient2.invoke_a_on(foo))
|
|
|
|
assert_equal("Foo#a", foo.a)
|
|
|
|
end
|
|
|
|
|
2012-08-02 07:34:19 -04:00
|
|
|
def test_new_method
|
|
|
|
foo = Foo.new
|
|
|
|
assert_raise(NoMethodError) { foo.z }
|
|
|
|
assert_equal("FooExt#z", FooExtClient.invoke_z_on(foo))
|
|
|
|
assert_raise(NoMethodError) { foo.z }
|
|
|
|
end
|
|
|
|
|
2012-12-10 08:02:54 -05:00
|
|
|
module RespondTo
|
|
|
|
class Super
|
|
|
|
def foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Sub < Super
|
|
|
|
end
|
|
|
|
|
|
|
|
module M
|
|
|
|
refine Sub do
|
|
|
|
def foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-09 03:48:34 -05:00
|
|
|
def test_send_should_not_use_refinements
|
2012-11-02 20:09:26 -04:00
|
|
|
foo = Foo.new
|
|
|
|
assert_raise(NoMethodError) { foo.send(:z) }
|
2012-12-09 03:48:34 -05:00
|
|
|
assert_raise(NoMethodError) { FooExtClient.send_z_on(foo) }
|
2012-11-02 20:09:26 -04:00
|
|
|
assert_raise(NoMethodError) { foo.send(:z) }
|
2012-12-10 08:02:54 -05:00
|
|
|
|
|
|
|
assert_equal(true, RespondTo::Sub.new.respond_to?(:foo))
|
2012-11-02 20:09:26 -04:00
|
|
|
end
|
|
|
|
|
2012-12-09 03:48:34 -05:00
|
|
|
def test_method_should_not_use_refinements
|
2012-11-02 20:09:26 -04:00
|
|
|
foo = Foo.new
|
2012-12-09 03:48:34 -05:00
|
|
|
assert_raise(NameError) { foo.method(:z) }
|
|
|
|
assert_raise(NameError) { FooExtClient.method_z(foo) }
|
|
|
|
assert_raise(NameError) { foo.method(:z) }
|
2012-11-02 20:09:26 -04:00
|
|
|
end
|
|
|
|
|
2012-08-02 07:34:19 -04:00
|
|
|
def test_no_local_rebinding
|
|
|
|
foo = Foo.new
|
|
|
|
assert_equal("Foo#x", foo.call_x)
|
|
|
|
assert_equal("Foo#x", FooExtClient.invoke_call_x_on(foo))
|
|
|
|
assert_equal("Foo#x", foo.call_x)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_subclass_is_prior
|
|
|
|
sub = FooSub.new
|
|
|
|
assert_equal("FooSub#x", sub.x)
|
|
|
|
assert_equal("FooSub#x", FooExtClient.invoke_x_on(sub))
|
|
|
|
assert_equal("FooSub#x", sub.x)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_super_in_subclass
|
|
|
|
sub = FooSub.new
|
|
|
|
assert_equal("FooSub#y Foo#y", sub.y)
|
|
|
|
# not "FooSub#y FooExt#y Foo#y"
|
|
|
|
assert_equal("FooSub#y Foo#y", FooExtClient.invoke_y_on(sub))
|
|
|
|
assert_equal("FooSub#y Foo#y", sub.y)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_new_method_on_subclass
|
|
|
|
sub = FooSub.new
|
|
|
|
assert_raise(NoMethodError) { sub.z }
|
|
|
|
assert_equal("FooExt#z", FooExtClient.invoke_z_on(sub))
|
|
|
|
assert_raise(NoMethodError) { sub.z }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_module_eval
|
|
|
|
foo = Foo.new
|
|
|
|
assert_equal("Foo#x", foo.x)
|
2012-12-07 10:49:21 -05:00
|
|
|
assert_equal("Foo#x", FooExt.module_eval { foo.x })
|
|
|
|
assert_equal("Foo#x", FooExt.module_eval("foo.x"))
|
2012-08-02 07:34:19 -04:00
|
|
|
assert_equal("Foo#x", foo.x)
|
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
def test_instance_eval_without_refinement
|
2012-08-02 07:34:19 -04:00
|
|
|
foo = Foo.new
|
|
|
|
ext_client = FooExtClient.new
|
|
|
|
assert_equal("Foo#x", foo.x)
|
2012-12-06 10:12:36 -05:00
|
|
|
assert_equal("Foo#x", ext_client.instance_eval { foo.x })
|
2012-08-02 07:34:19 -04:00
|
|
|
assert_equal("Foo#x", foo.x)
|
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
module FixnumSlashExt
|
|
|
|
refine Fixnum do
|
|
|
|
def /(other) quo(other) end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-02 07:34:19 -04:00
|
|
|
def test_override_builtin_method
|
|
|
|
assert_equal(0, 1 / 2)
|
2012-12-06 10:12:36 -05:00
|
|
|
assert_equal(Rational(1, 2), eval_using(FixnumSlashExt, "1 / 2"))
|
2012-08-02 07:34:19 -04:00
|
|
|
assert_equal(0, 1 / 2)
|
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
module FixnumPlusExt
|
|
|
|
refine Fixnum do
|
|
|
|
def self.method_added(*args); end
|
|
|
|
def +(other) "overriden" end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-06 23:09:51 -05:00
|
|
|
def test_override_builtin_method_with_method_added
|
|
|
|
assert_equal(3, 1 + 2)
|
2012-12-06 10:12:36 -05:00
|
|
|
assert_equal("overriden", eval_using(FixnumPlusExt, "1 + 2"))
|
2012-11-06 23:09:51 -05:00
|
|
|
assert_equal(3, 1 + 2)
|
|
|
|
end
|
|
|
|
|
2012-08-02 07:34:19 -04:00
|
|
|
def test_return_value_of_refine
|
|
|
|
mod = nil
|
|
|
|
result = nil
|
|
|
|
m = Module.new {
|
|
|
|
result = refine(Object) {
|
|
|
|
mod = self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert_equal mod, result
|
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
module RefineSameClass
|
|
|
|
REFINEMENT1 = refine(Fixnum) {
|
|
|
|
def foo; return "foo" end
|
|
|
|
}
|
|
|
|
REFINEMENT2 = refine(Fixnum) {
|
|
|
|
def bar; return "bar" end
|
|
|
|
}
|
|
|
|
REFINEMENT3 = refine(String) {
|
|
|
|
def baz; return "baz" end
|
2012-08-02 07:34:19 -04:00
|
|
|
}
|
2012-12-06 10:12:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_refine_same_class_twice
|
|
|
|
assert_equal("foo", eval_using(RefineSameClass, "1.foo"))
|
|
|
|
assert_equal("bar", eval_using(RefineSameClass, "1.bar"))
|
|
|
|
assert_equal(RefineSameClass::REFINEMENT1, RefineSameClass::REFINEMENT2)
|
|
|
|
assert_not_equal(RefineSameClass::REFINEMENT1, RefineSameClass::REFINEMENT3)
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
module FixnumFooExt
|
|
|
|
refine Fixnum do
|
|
|
|
def foo; "foo"; end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-09 03:48:34 -05:00
|
|
|
def test_respond_to_should_not_use_refinements
|
2012-08-02 07:34:19 -04:00
|
|
|
assert_equal(false, 1.respond_to?(:foo))
|
2012-12-09 03:48:34 -05:00
|
|
|
assert_equal(false, eval_using(FixnumFooExt, "1.respond_to?(:foo)"))
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
module StringCmpExt
|
|
|
|
refine String do
|
|
|
|
def <=>(other) return 0 end
|
|
|
|
end
|
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
module ArrayEachExt
|
|
|
|
refine Array do
|
|
|
|
def each
|
|
|
|
super do |i|
|
|
|
|
yield 2 * i
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
|
|
|
end
|
2012-12-06 10:12:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_builtin_method_no_local_rebinding
|
|
|
|
assert_equal(false, eval_using(StringCmpExt, '"1" >= "2"'))
|
|
|
|
assert_equal(1, eval_using(ArrayEachExt, "[1, 2, 3].min"))
|
2012-08-02 07:34:19 -04:00
|
|
|
end
|
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
module RefinePrependedClass
|
|
|
|
module M1
|
2012-08-06 22:44:24 -04:00
|
|
|
def foo
|
|
|
|
super << :m1
|
|
|
|
end
|
2012-12-07 10:49:21 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class C
|
|
|
|
prepend M1
|
2012-08-06 22:44:24 -04:00
|
|
|
|
|
|
|
def foo
|
|
|
|
[:c]
|
|
|
|
end
|
2012-12-07 10:49:21 -05:00
|
|
|
end
|
2012-08-02 07:34:19 -04:00
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
module M2
|
|
|
|
refine C do
|
2012-09-27 05:53:24 -04:00
|
|
|
def foo
|
2012-12-07 10:49:21 -05:00
|
|
|
super << :m2
|
2012-09-27 05:53:24 -04:00
|
|
|
end
|
|
|
|
end
|
2012-12-07 10:49:21 -05:00
|
|
|
end
|
2012-09-27 05:53:24 -04:00
|
|
|
end
|
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
def test_refine_prepended_class
|
|
|
|
x = eval_using(RefinePrependedClass::M2,
|
|
|
|
"TestRefinement::RefinePrependedClass::C.new.foo")
|
|
|
|
assert_equal([:c, :m1, :m2], x)
|
2012-09-27 05:53:24 -04:00
|
|
|
end
|
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
def test_refine_module
|
|
|
|
m1 = Module.new
|
|
|
|
assert_raise(TypeError) do
|
|
|
|
Module.new {
|
|
|
|
refine m1 do
|
2012-09-28 22:21:27 -04:00
|
|
|
def foo
|
2012-12-07 10:49:21 -05:00
|
|
|
:m2
|
2012-09-28 22:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
2012-12-07 10:49:21 -05:00
|
|
|
}
|
|
|
|
end
|
2012-09-28 02:48:20 -04:00
|
|
|
end
|
|
|
|
|
2012-09-27 05:53:24 -04:00
|
|
|
def test_refine_neither_class_nor_module
|
|
|
|
assert_raise(TypeError) do
|
|
|
|
Module.new {
|
|
|
|
refine Object.new do
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
assert_raise(TypeError) do
|
|
|
|
Module.new {
|
|
|
|
refine 123 do
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
assert_raise(TypeError) do
|
|
|
|
Module.new {
|
|
|
|
refine "foo" do
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2012-09-28 22:21:27 -04:00
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
def test_refine_in_class
|
|
|
|
assert_raise(NoMethodError) do
|
|
|
|
Class.new {
|
|
|
|
refine Fixnum do
|
|
|
|
def foo
|
|
|
|
"c"
|
|
|
|
end
|
2012-09-28 22:21:27 -04:00
|
|
|
end
|
2012-12-07 10:49:21 -05:00
|
|
|
}
|
|
|
|
end
|
2012-09-28 22:21:27 -04:00
|
|
|
end
|
|
|
|
|
2012-11-11 01:14:16 -05:00
|
|
|
def test_main_using
|
2012-12-06 09:31:43 -05:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(:C :M), /Refinements are experimental/)
|
|
|
|
require "refinement"
|
|
|
|
|
2012-11-11 01:14:16 -05:00
|
|
|
class C
|
|
|
|
def foo
|
|
|
|
:C
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M
|
|
|
|
refine C do
|
|
|
|
def foo
|
|
|
|
:M
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
c = C.new
|
|
|
|
p c.foo
|
|
|
|
using M
|
|
|
|
p c.foo
|
|
|
|
INPUT
|
|
|
|
end
|
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
def test_main_using_is_private
|
|
|
|
assert_raise(NoMethodError) do
|
|
|
|
eval("self.using Module.new", TOPLEVEL_BINDING)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-11 01:14:16 -05:00
|
|
|
def test_no_kernel_using
|
|
|
|
assert_raise(NoMethodError) do
|
|
|
|
using Module.new
|
2012-09-28 22:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
def test_no_module_using
|
|
|
|
assert_raise(NoMethodError) do
|
|
|
|
Module.new {
|
|
|
|
using Module.new
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class UsingClass
|
|
|
|
end
|
|
|
|
|
2012-09-28 22:21:27 -04:00
|
|
|
def test_module_using_class
|
|
|
|
c = Class.new
|
|
|
|
assert_raise(TypeError) do
|
2012-12-07 10:49:21 -05:00
|
|
|
eval("using TestRefinement::UsingClass", TOPLEVEL_BINDING)
|
2012-09-28 22:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
2012-10-08 10:56:08 -04:00
|
|
|
|
2012-10-30 10:58:47 -04:00
|
|
|
def test_refine_without_block
|
|
|
|
c1 = Class.new
|
|
|
|
e = assert_raise(ArgumentError) {
|
|
|
|
Module.new do
|
|
|
|
refine c1
|
|
|
|
end
|
|
|
|
}
|
|
|
|
assert_equal("no block given", e.message)
|
|
|
|
end
|
2012-11-01 01:45:28 -04:00
|
|
|
|
2012-11-02 04:53:06 -04:00
|
|
|
module Inspect
|
|
|
|
module M
|
2012-12-08 08:35:15 -05:00
|
|
|
Fixnum = refine(Fixnum) {}
|
2012-11-02 04:53:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_inspect
|
|
|
|
assert_equal("#<refinement:Fixnum@TestRefinement::Inspect::M>",
|
2012-12-08 08:35:15 -05:00
|
|
|
Inspect::M::Fixnum.inspect)
|
2012-11-02 04:53:06 -04:00
|
|
|
end
|
2012-11-10 21:42:04 -05:00
|
|
|
|
2012-11-10 23:45:31 -05:00
|
|
|
def test_using_method_cache
|
2012-12-06 09:31:43 -05:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(:M1 :M2), /Refinements are experimental/)
|
|
|
|
require "refinement"
|
|
|
|
|
2012-11-10 23:45:31 -05:00
|
|
|
class C
|
|
|
|
def foo
|
|
|
|
"original"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M1
|
|
|
|
refine C do
|
|
|
|
def foo
|
|
|
|
:M1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M2
|
|
|
|
refine C do
|
|
|
|
def foo
|
|
|
|
:M2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
c = C.new
|
|
|
|
using M1
|
|
|
|
p c.foo
|
|
|
|
using M2
|
|
|
|
p c.foo
|
|
|
|
INPUT
|
|
|
|
end
|
2012-11-13 04:05:18 -05:00
|
|
|
|
2012-12-07 10:49:21 -05:00
|
|
|
module RedefineRefinedMethod
|
* revised r37993 to avoid SEGV/ILL in tests. In r37993, a method
entry with VM_METHOD_TYPE_REFINED holds only the original method
definition, so ci->me is set to a method entry allocated in the
stack, and it causes SEGV/ILL. In this commit, a method entry
with VM_METHOD_TYPE_REFINED holds the whole original method entry.
Furthermore, rb_thread_mark() is changed to mark cfp->klass to
avoid GC for iclasses created by copy_refinement_iclass().
* vm_method.c (rb_method_entry_make): add a method entry with
VM_METHOD_TYPE_REFINED to the class refined by the refinement if
the target module is a refinement. When a method entry with
VM_METHOD_TYPE_UNDEF is invoked by vm_call_method(), a method with
the same name is searched in refinements. If such a method is
found, the method is invoked. Otherwise, the original method in
the refined class (rb_method_definition_t::body.orig_me) is
invoked. This change is made to simplify the normal method lookup
and to improve the performance of normal method calls.
* vm_method.c (EXPR1, search_method, rb_method_entry),
vm_eval.c (rb_call0, rb_search_method_entry): do not use
refinements for method lookup.
* vm_insnhelper.c (vm_call_method): search methods in refinements if
ci->me is VM_METHOD_TYPE_REFINED. If the method is called by
super (i.e., ci->call == vm_call_super_method), skip the same
method entry as the current method to avoid infinite call of the
same method.
* class.c (include_modules_at): add a refined method entry for each
method defined in a module included in a refinement.
* class.c (rb_prepend_module): set an empty table to
RCLASS_M_TBL(klass) to add refined method entries, because
refinements should have priority over prepended modules.
* proc.c (mnew): use rb_method_entry_with_refinements() to get
a refined method.
* vm.c (rb_thread_mark): mark cfp->klass for iclasses created by
copy_refinement_iclass().
* vm.c (Init_VM), cont.c (fiber_init): initialize th->cfp->klass.
* test/ruby/test_refinement.rb (test_inline_method_cache): do not skip
the test because it should pass successfully.
* test/ruby/test_refinement.rb (test_redefine_refined_method): new
test for the case a refined method is redefined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-06 08:08:41 -05:00
|
|
|
class C
|
|
|
|
def foo
|
|
|
|
"original"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M
|
|
|
|
refine C do
|
|
|
|
def foo
|
|
|
|
"refined"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class C
|
|
|
|
def foo
|
|
|
|
"redefined"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_redefine_refined_method
|
2012-12-07 10:49:21 -05:00
|
|
|
x = eval_using(RedefineRefinedMethod::M,
|
|
|
|
"TestRefinement::RedefineRefinedMethod::C.new.foo")
|
|
|
|
assert_equal("refined", x)
|
|
|
|
end
|
|
|
|
|
|
|
|
module StringExt
|
|
|
|
refine String do
|
|
|
|
def foo
|
|
|
|
"foo"
|
|
|
|
end
|
|
|
|
end
|
* revised r37993 to avoid SEGV/ILL in tests. In r37993, a method
entry with VM_METHOD_TYPE_REFINED holds only the original method
definition, so ci->me is set to a method entry allocated in the
stack, and it causes SEGV/ILL. In this commit, a method entry
with VM_METHOD_TYPE_REFINED holds the whole original method entry.
Furthermore, rb_thread_mark() is changed to mark cfp->klass to
avoid GC for iclasses created by copy_refinement_iclass().
* vm_method.c (rb_method_entry_make): add a method entry with
VM_METHOD_TYPE_REFINED to the class refined by the refinement if
the target module is a refinement. When a method entry with
VM_METHOD_TYPE_UNDEF is invoked by vm_call_method(), a method with
the same name is searched in refinements. If such a method is
found, the method is invoked. Otherwise, the original method in
the refined class (rb_method_definition_t::body.orig_me) is
invoked. This change is made to simplify the normal method lookup
and to improve the performance of normal method calls.
* vm_method.c (EXPR1, search_method, rb_method_entry),
vm_eval.c (rb_call0, rb_search_method_entry): do not use
refinements for method lookup.
* vm_insnhelper.c (vm_call_method): search methods in refinements if
ci->me is VM_METHOD_TYPE_REFINED. If the method is called by
super (i.e., ci->call == vm_call_super_method), skip the same
method entry as the current method to avoid infinite call of the
same method.
* class.c (include_modules_at): add a refined method entry for each
method defined in a module included in a refinement.
* class.c (rb_prepend_module): set an empty table to
RCLASS_M_TBL(klass) to add refined method entries, because
refinements should have priority over prepended modules.
* proc.c (mnew): use rb_method_entry_with_refinements() to get
a refined method.
* vm.c (rb_thread_mark): mark cfp->klass for iclasses created by
copy_refinement_iclass().
* vm.c (Init_VM), cont.c (fiber_init): initialize th->cfp->klass.
* test/ruby/test_refinement.rb (test_inline_method_cache): do not skip
the test because it should pass successfully.
* test/ruby/test_refinement.rb (test_redefine_refined_method): new
test for the case a refined method is redefined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-06 08:08:41 -05:00
|
|
|
end
|
2012-12-06 10:12:36 -05:00
|
|
|
|
2012-12-07 21:37:16 -05:00
|
|
|
module RefineScoping
|
|
|
|
refine String do
|
|
|
|
def foo
|
|
|
|
"foo"
|
|
|
|
end
|
|
|
|
|
|
|
|
def RefineScoping.call_in_refine_block
|
|
|
|
"".foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.call_outside_refine_block
|
|
|
|
"".foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_refine_scoping
|
|
|
|
assert_equal("foo", RefineScoping.call_in_refine_block)
|
|
|
|
assert_raise(NoMethodError) do
|
|
|
|
RefineScoping.call_outside_refine_block
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module StringRecursiveLength
|
|
|
|
refine String do
|
|
|
|
def recursive_length
|
|
|
|
if empty?
|
|
|
|
0
|
|
|
|
else
|
|
|
|
self[1..-1].recursive_length + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_refine_recursion
|
|
|
|
x = eval_using(StringRecursiveLength, "'foo'.recursive_length")
|
|
|
|
assert_equal(3, x)
|
|
|
|
end
|
|
|
|
|
|
|
|
module ToJSON
|
|
|
|
refine Integer do
|
|
|
|
def to_json; to_s; end
|
|
|
|
end
|
|
|
|
|
|
|
|
refine Array do
|
|
|
|
def to_json; "[" + map { |i| i.to_json }.join(",") + "]" end
|
|
|
|
end
|
|
|
|
|
|
|
|
refine Hash do
|
|
|
|
def to_json; "{" + map { |k, v| k.to_s.dump + ":" + v.to_json }.join(",") + "}" end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_refine_mutual_recursion
|
|
|
|
x = eval_using(ToJSON, "[{1=>2}, {3=>4}].to_json")
|
|
|
|
assert_equal('[{"1":2},{"3":4}]', x)
|
|
|
|
end
|
|
|
|
|
2012-12-07 22:06:13 -05:00
|
|
|
def test_refine_with_proc
|
|
|
|
assert_raise(ArgumentError) do
|
|
|
|
Module.new {
|
|
|
|
refine(String, &Proc.new {})
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-08 08:35:12 -05:00
|
|
|
def test_using_in_module
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
eval(<<-EOF, TOPLEVEL_BINDING)
|
|
|
|
$main = self
|
|
|
|
module M
|
|
|
|
end
|
|
|
|
module M2
|
|
|
|
$main.send(:using, M)
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_using_in_method
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
eval(<<-EOF, TOPLEVEL_BINDING)
|
|
|
|
$main = self
|
|
|
|
module M
|
|
|
|
end
|
|
|
|
def call_using_in_method
|
|
|
|
$main.send(:using, M)
|
|
|
|
end
|
|
|
|
call_using_in_method
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
* fix the behavior when a module is included into a refinement.
This change is a little tricky, so it might be better to prohibit
module inclusion to refinements.
* include/ruby/ruby.h (RMODULE_INCLUDED_INTO_REFINEMENT): new flag
to represent that a module (iclass) is included into a refinement.
* class.c (include_modules_at): set RMODULE_INCLUDED_INTO_REFINEMENT
if klass is a refinement.
* eval.c (rb_mod_refine): set the superclass of a refinement to the
refined class for super.
* eval.c (rb_using_refinement): skip the above superclass (the
refined class) when creating iclasses for refinements. Otherwise,
`using Refinement1; using Refinement2' creates iclasses:
<Refinement2> -> <RefinedClass> -> <Refinement1> -> RefinedClass,
where <Module> is an iclass for Module, so RefinedClass is
searched before Refinement1. The correct iclasses should be
<Refinement2> -> <Refinement1> -> RefinedClass.
* vm_insnhelper.c (vm_search_normal_superclass): if klass is an
iclass for a refinement, use the refinement's superclass instead
of the iclass's superclass. Otherwise, multiple refinements are
searched by super. For example, if a refinement Refinement2
includes a module M (i.e., Refinement2 -> <M> -> RefinedClass,
and if refinements iclasses are <Refinement2> -> <M>' ->
<Refinement1> -> RefinedClass, then super in <Refinement2> should
use Refinement2's superclass <M> instead of <Refinement2>'s
superclass <M>'.
* vm_insnhelper.c (vm_search_super_method): do not raise a
NotImplementError if current_defind_class is a module included
into a refinement. Because of the change of
vm_search_normal_superclass(), the receiver might not be an
instance of the module('s iclass).
* test/ruby/test_refinement.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-10 11:05:45 -05:00
|
|
|
module IncludeIntoRefinement
|
|
|
|
class C
|
|
|
|
def bar
|
|
|
|
return "C#bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
def baz
|
|
|
|
return "C#baz"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Mixin
|
|
|
|
def foo
|
|
|
|
return "Mixin#foo"
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar
|
|
|
|
return super << " Mixin#bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
def baz
|
|
|
|
return super << " Mixin#baz"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M
|
|
|
|
refine C do
|
|
|
|
include Mixin
|
|
|
|
|
|
|
|
def baz
|
|
|
|
return super << " M#baz"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
eval <<-EOF, TOPLEVEL_BINDING
|
|
|
|
using TestRefinement::IncludeIntoRefinement::M
|
|
|
|
|
|
|
|
module TestRefinement::IncludeIntoRefinement::User
|
|
|
|
def self.invoke_foo_on(x)
|
|
|
|
x.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.invoke_bar_on(x)
|
|
|
|
x.bar
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.invoke_baz_on(x)
|
|
|
|
x.baz
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
|
|
|
def test_include_into_refinement
|
|
|
|
x = IncludeIntoRefinement::C.new
|
|
|
|
assert_equal("Mixin#foo", IncludeIntoRefinement::User.invoke_foo_on(x))
|
|
|
|
assert_equal("C#bar Mixin#bar",
|
|
|
|
IncludeIntoRefinement::User.invoke_bar_on(x))
|
|
|
|
assert_equal("C#baz Mixin#baz M#baz",
|
|
|
|
IncludeIntoRefinement::User.invoke_baz_on(x))
|
|
|
|
end
|
|
|
|
|
2012-12-11 11:48:21 -05:00
|
|
|
module PrependIntoRefinement
|
|
|
|
class C
|
|
|
|
def bar
|
|
|
|
return "C#bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
def baz
|
|
|
|
return "C#baz"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Mixin
|
|
|
|
def foo
|
|
|
|
return "Mixin#foo"
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar
|
|
|
|
return super << " Mixin#bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
def baz
|
|
|
|
return super << " Mixin#baz"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M
|
|
|
|
refine C do
|
|
|
|
prepend Mixin
|
|
|
|
|
|
|
|
def baz
|
|
|
|
return super << " M#baz"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
eval <<-EOF, TOPLEVEL_BINDING
|
|
|
|
using TestRefinement::PrependIntoRefinement::M
|
|
|
|
|
|
|
|
module TestRefinement::PrependIntoRefinement::User
|
|
|
|
def self.invoke_foo_on(x)
|
|
|
|
x.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.invoke_bar_on(x)
|
|
|
|
x.bar
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.invoke_baz_on(x)
|
|
|
|
x.baz
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
|
|
|
def test_prepend_into_refinement
|
|
|
|
x = PrependIntoRefinement::C.new
|
|
|
|
assert_equal("Mixin#foo", PrependIntoRefinement::User.invoke_foo_on(x))
|
|
|
|
assert_equal("C#bar Mixin#bar",
|
|
|
|
PrependIntoRefinement::User.invoke_bar_on(x))
|
|
|
|
assert_equal("C#baz M#baz Mixin#baz",
|
|
|
|
PrependIntoRefinement::User.invoke_baz_on(x))
|
|
|
|
end
|
|
|
|
|
2012-12-12 04:35:50 -05:00
|
|
|
module PrependAfterRefine
|
|
|
|
class C
|
|
|
|
def foo
|
|
|
|
"original"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module M
|
|
|
|
refine C do
|
|
|
|
def foo
|
|
|
|
"refined"
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar
|
|
|
|
"refined"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Mixin
|
|
|
|
def foo
|
|
|
|
"mixin"
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar
|
|
|
|
"mixin"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class C
|
|
|
|
prepend Mixin
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_prepend_after_refine
|
|
|
|
x = eval_using(PrependAfterRefine::M,
|
|
|
|
"TestRefinement::PrependAfterRefine::C.new.foo")
|
|
|
|
assert_equal("refined", x)
|
|
|
|
assert_equal("mixin", TestRefinement::PrependAfterRefine::C.new.foo)
|
|
|
|
y = eval_using(PrependAfterRefine::M,
|
|
|
|
"TestRefinement::PrependAfterRefine::C.new.bar")
|
|
|
|
assert_equal("refined", y)
|
|
|
|
assert_equal("mixin", TestRefinement::PrependAfterRefine::C.new.bar)
|
|
|
|
end
|
|
|
|
|
2012-12-06 10:12:36 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def eval_using(mod, s)
|
|
|
|
eval("using #{mod}; #{s}", TOPLEVEL_BINDING)
|
|
|
|
end
|
2012-09-27 05:53:24 -04:00
|
|
|
end
|