Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / models / canine.rb
1 class Canine < ActiveRecord::Base
2   self.abstract_class = true
3   
4   def an_abstract_method
5     :correct_abstract_method_response
6   end
7   
8 end
9