From 22df38ca3306684033039fd0bc20b1025f4f8e2a Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 28 Nov 2012 12:43:09 -0800 Subject: Ensure that associations have a symbol argument. Fixes #7418. --- activerecord/test/cases/associations_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/associations_test.rb b/activerecord/test/cases/associations_test.rb index c0f1945cec..d7f25f760e 100644 --- a/activerecord/test/cases/associations_test.rb +++ b/activerecord/test/cases/associations_test.rb @@ -289,6 +289,14 @@ class OverridingAssociationsTest < ActiveRecord::TestCase DifferentPeopleList.reflect_on_association(:has_one) ) end + + def test_requires_symbol_argument + assert_raises ArgumentError do + Class.new(Post) do + belongs_to "author" + end + end + end end class GeneratedMethodsTest < ActiveRecord::TestCase -- cgit v1.2.3