aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures_test.rb')
-rwxr-xr-xactiverecord/test/fixtures_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/fixtures_test.rb b/activerecord/test/fixtures_test.rb
index e1f2f6d24c..6de231a4fb 100755
--- a/activerecord/test/fixtures_test.rb
+++ b/activerecord/test/fixtures_test.rb
@@ -3,6 +3,7 @@ require 'fixtures/topic'
require 'fixtures/developer'
require 'fixtures/company'
require 'fixtures/task'
+require 'fixtures/reply'
class FixturesTest < Test::Unit::TestCase
fixtures :topics, :developers, :accounts, :tasks
@@ -130,6 +131,12 @@ class FixturesWithoutInstantiationTest < Test::Unit::TestCase
def test_fixtures_from_root_yml_without_instantiation
assert_nil @unknown
end
+
+ def test_accessor_methods
+ assert_equal "The First Topic", topics(:first).title
+ assert_equal "Jamis", developers(:jamis).name
+ assert_equal 50, accounts(:signals37).credit_limit
+ end
end