diff options
author | Geoffrey Roguelon <geoffrey.roguelon@gmail.com> | 2012-05-15 09:40:03 +0200 |
---|---|---|
committer | Geoffrey Roguelon <geoffrey.roguelon@gmail.com> | 2012-05-15 09:40:03 +0200 |
commit | 1f62b1266275584c83add972aaad3db6ea8d5501 (patch) | |
tree | db6894abb855b20f4139e6d5bf14888850cc4e01 /activerecord | |
parent | fc0391ff7d94945e51297f2dbb15e9b149094382 (diff) | |
download | rails-1f62b1266275584c83add972aaad3db6ea8d5501.tar.gz rails-1f62b1266275584c83add972aaad3db6ea8d5501.tar.bz2 rails-1f62b1266275584c83add972aaad3db6ea8d5501.zip |
Fix an error in example in methods of instanciated fixtures.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index c630af59f0..7e6512501c 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -83,7 +83,7 @@ module ActiveRecord # end # # test "find_alt_method_2" do - # assert_equal "Ruby on Rails", @rubyonrails.news + # assert_equal "Ruby on Rails", @rubyonrails.name # end # # In order to use these methods to access fixtured data within your testcases, you must specify one of the |