Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / modules / extension_module.rb
diff --git a/vendor/plugins/has_many_polymorphs/test/modules/extension_module.rb b/vendor/plugins/has_many_polymorphs/test/modules/extension_module.rb
new file mode 100644 (file)
index 0000000..7cb4eff
--- /dev/null
@@ -0,0 +1,9 @@
+
+module ExtensionModule
+  def a_method
+    :correct_module_result
+  end
+  def self.a_method
+    :incorrect_module_result
+  end
+end