From c10c0f3f6175ccea92c90758668f38f14da8d173 Mon Sep 17 00:00:00 2001 From: Nobuhiro IMAI Date: Sun, 16 May 2010 16:12:13 +0200 Subject: [PATCH 3/3] prevent to be run fixture accessor (e.g. test_foos for TestFoo model) as a test case Signed-off-by: Wijnand Wiersma --- activerecord/lib/active_record/fixtures.rb | 1 + activerecord/test/cases/fixtures_test.rb | 5 +++++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index 4bf33c3..8099aaa 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -891,6 +891,7 @@ module ActiveRecord instances.size == 1 ? instances.first : instances end + private table_name end end diff --git a/activerecord/test/cases/fixtures_test.rb b/activerecord/test/cases/fixtures_test.rb index 3ce2320..8008b86 100644 --- a/activerecord/test/cases/fixtures_test.rb +++ b/activerecord/test/cases/fixtures_test.rb @@ -256,6 +256,11 @@ class FixturesWithoutInstantiationTest < ActiveRecord::TestCase def test_fixtures_from_root_yml_without_instantiation assert !defined?(@unknown), "@unknown is not defined" end + + def test_visibility_of_accessor_method + assert_equal false, respond_to?(:topics, false), "should be private method" + assert_equal true, respond_to?(:topics, true), "confirm to respond surely" + end def test_accessor_methods assert_equal "The First Topic", topics(:first).title -- 1.6.4.2