Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / modules / other_extension_module.rb
1
2 module OtherExtensionModule
3   def another_method
4     :correct_other_module_result
5   end
6   def self.another_method
7     :incorrect_other_module_result
8   end
9 end