Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / modules / extension_module.rb
1
2 module ExtensionModule
3   def a_method
4     :correct_module_result
5   end
6   def self.a_method
7     :incorrect_module_result
8   end
9 end