1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Hax to workaround private send for Ruby 1.9. Consider moving to send! and aliasing to send for < 1.9.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7651 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2007-09-27 09:37:45 +00:00
parent e36b9b95fe
commit c81bd19b13

View file

@ -2,12 +2,12 @@ require File.dirname(__FILE__) + '/../../abstract_unit'
class ModuleAttributeAccessorTest < Test::Unit::TestCase class ModuleAttributeAccessorTest < Test::Unit::TestCase
def setup def setup
@module = Module.new do m = @module = Module.new do
mattr_accessor :foo mattr_accessor :foo
mattr_accessor :bar, :instance_writer => false mattr_accessor :bar, :instance_writer => false
end end
@class = Class.new @class = Class.new
@class.send :include, @module @class.instance_eval { include m }
@object = @class.new @object = @class.new
end end