diff options
author | Ben Orenstein <ben.orenstein@gmail.com> | 2011-02-17 00:09:49 -0500 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-17 14:38:51 -0200 |
commit | b131cfba055bfbf25f3785c5235c1edbf04ff9f1 (patch) | |
tree | 15629575ef79c29ae6067a8c731064a6d820d98a /activesupport/test/core_ext | |
parent | 9c023cc4d2949d10fa6cfa013655d86aae8d8019 (diff) | |
download | rails-b131cfba055bfbf25f3785c5235c1edbf04ff9f1.tar.gz rails-b131cfba055bfbf25f3785c5235c1edbf04ff9f1.tar.bz2 rails-b131cfba055bfbf25f3785c5235c1edbf04ff9f1.zip |
Remove unused line in test setup.
[#6442 state:committed]
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r-- | activesupport/test/core_ext/module_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb index 9f9840834d..a95cf1591f 100644 --- a/activesupport/test/core_ext/module_test.rb +++ b/activesupport/test/core_ext/module_test.rb @@ -30,7 +30,6 @@ Somewhere = Struct.new(:street, :city) Someone = Struct.new(:name, :place) do delegate :street, :city, :to_f, :to => :place - delegate :state, :to => :@place delegate :upcase, :to => "place.city" end |