diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-03-16 21:19:35 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-03-16 21:20:44 -0300 |
commit | c834a751d2acbd55b580cbba2e96dd29c5d9a452 (patch) | |
tree | 423e181f132e2977ac124b83a59032d21ac7bca8 /activemodel/test | |
parent | fda45f4fc493f5596375199fefe854df24b1ffbf (diff) | |
download | rails-c834a751d2acbd55b580cbba2e96dd29c5d9a452.tar.gz rails-c834a751d2acbd55b580cbba2e96dd29c5d9a452.tar.bz2 rails-c834a751d2acbd55b580cbba2e96dd29c5d9a452.zip |
define_attr_method correctly defines methods with invalid identifiers
Diffstat (limited to 'activemodel/test')
-rw-r--r-- | activemodel/test/cases/attribute_methods_test.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/activemodel/test/cases/attribute_methods_test.rb b/activemodel/test/cases/attribute_methods_test.rb index 13f29a8fd9..5cf905bc1f 100644 --- a/activemodel/test/cases/attribute_methods_test.rb +++ b/activemodel/test/cases/attribute_methods_test.rb @@ -7,7 +7,7 @@ class ModelWithAttributes class << self define_method(:bar) do - 'bar' + 'original bar' end end @@ -49,7 +49,7 @@ class ModelWithWeirdNamesAttributes class << self define_method(:'c?d') do - 'c?d' + 'original c?d' end end @@ -102,6 +102,7 @@ class AttributeMethodsTest < ActiveModel::TestCase ModelWithAttributes.define_attr_method(:bar, 'bar') assert_respond_to ModelWithAttributes, :bar + assert_equal "original bar", ModelWithAttributes.original_bar assert_equal "bar", ModelWithAttributes.bar end @@ -109,6 +110,7 @@ class AttributeMethodsTest < ActiveModel::TestCase ModelWithWeirdNamesAttributes.define_attr_method(:'c?d', 'c?d') assert_respond_to ModelWithWeirdNamesAttributes, :'c?d' + assert_equal "original c?d", ModelWithWeirdNamesAttributes.send('original_c?d') assert_equal "c?d", ModelWithWeirdNamesAttributes.send('c?d') end |