aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/parrot.rb
diff options
context:
space:
mode:
authorAndy Atkinson <andyatkinson@gmail.com>2015-10-01 23:42:42 -0500
committerAndy Atkinson <andyatkinson@gmail.com>2015-10-01 23:42:45 -0500
commit73ec5a26a345846df52d547980f738d5442ef949 (patch)
treeb1d700f1bfe2b192f41215217d687243f171ebc4 /activerecord/test/models/parrot.rb
parentdd57f60de92833e4f934aad07d8dc5acb5fbbe16 (diff)
downloadrails-73ec5a26a345846df52d547980f738d5442ef949.tar.gz
rails-73ec5a26a345846df52d547980f738d5442ef949.tar.bz2
rails-73ec5a26a345846df52d547980f738d5442ef949.zip
Remove unused scopes
Diffstat (limited to 'activerecord/test/models/parrot.rb')
-rw-r--r--activerecord/test/models/parrot.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/models/parrot.rb b/activerecord/test/models/parrot.rb
index b26035d944..ddc9dcaf29 100644
--- a/activerecord/test/models/parrot.rb
+++ b/activerecord/test/models/parrot.rb
@@ -21,9 +21,3 @@ end
class DeadParrot < Parrot
belongs_to :killer, :class_name => 'Pirate', foreign_key: :killer_id
end
-
-class FunkyParrot < Parrot
- before_destroy do
- raise "before_destroy was called"
- end
-end