aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/parrot.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures/parrot.rb')
-rw-r--r--activerecord/test/fixtures/parrot.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activerecord/test/fixtures/parrot.rb b/activerecord/test/fixtures/parrot.rb
deleted file mode 100644
index 65191c1aa5..0000000000
--- a/activerecord/test/fixtures/parrot.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class Parrot < ActiveRecord::Base
- set_inheritance_column :parrot_sti_class
- has_and_belongs_to_many :pirates
- has_and_belongs_to_many :treasures
- has_many :loots, :as => :looter
-end
-
-class LiveParrot < Parrot
-end
-
-class DeadParrot < Parrot
- belongs_to :killer, :class_name => 'Pirate'
-end