aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/module/attribute_accessor_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-09-27 09:37:45 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-09-27 09:37:45 +0000
commitc81bd19b136995c8780bd4c6a136f950fcad0b61 (patch)
tree18b08fa29d743c40924253f8cbaed73fca24c060 /activesupport/test/core_ext/module/attribute_accessor_test.rb
parente36b9b95feae48d51aeed81f5348a7238138a716 (diff)
downloadrails-c81bd19b136995c8780bd4c6a136f950fcad0b61.tar.gz
rails-c81bd19b136995c8780bd4c6a136f950fcad0b61.tar.bz2
rails-c81bd19b136995c8780bd4c6a136f950fcad0b61.zip
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
Diffstat (limited to 'activesupport/test/core_ext/module/attribute_accessor_test.rb')
-rw-r--r--activesupport/test/core_ext/module/attribute_accessor_test.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/activesupport/test/core_ext/module/attribute_accessor_test.rb b/activesupport/test/core_ext/module/attribute_accessor_test.rb
index c3f6575f84..7296cc5f8c 100644
--- a/activesupport/test/core_ext/module/attribute_accessor_test.rb
+++ b/activesupport/test/core_ext/module/attribute_accessor_test.rb
@@ -2,32 +2,32 @@ require File.dirname(__FILE__) + '/../../abstract_unit'
class ModuleAttributeAccessorTest < Test::Unit::TestCase
def setup
- @module = Module.new do
+ m = @module = Module.new do
mattr_accessor :foo
mattr_accessor :bar, :instance_writer => false
end
@class = Class.new
- @class.send :include, @module
+ @class.instance_eval { include m }
@object = @class.new
end
-
+
def test_should_use_mattr_default
assert_nil @module.foo
assert_nil @object.foo
end
-
+
def test_should_set_mattr_value
@module.foo = :test
assert_equal :test, @object.foo
-
+
@object.foo = :test2
assert_equal :test2, @module.foo
end
-
+
def test_should_not_create_instance_writer
assert @module.respond_to?(:foo)
assert @module.respond_to?(:foo=)
assert @object.respond_to?(:bar)
assert !@object.respond_to?(:bar=)
end
-end \ No newline at end of file
+end