aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/tagging.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/models/tagging.rb')
-rw-r--r--activerecord/test/models/tagging.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/test/models/tagging.rb b/activerecord/test/models/tagging.rb
new file mode 100644
index 0000000000..a1fa1a9750
--- /dev/null
+++ b/activerecord/test/models/tagging.rb
@@ -0,0 +1,10 @@
+# test that attr_readonly isn't called on the :taggable polymorphic association
+module Taggable
+end
+
+class Tagging < ActiveRecord::Base
+ belongs_to :tag, :include => :tagging
+ belongs_to :super_tag, :class_name => 'Tag', :foreign_key => 'super_tag_id'
+ belongs_to :invalid_tag, :class_name => 'Tag', :foreign_key => 'tag_id'
+ belongs_to :taggable, :polymorphic => true, :counter_cache => true
+end \ No newline at end of file