Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / Rakefile
diff --git a/vendor/plugins/has_many_polymorphs/test/integration/app/Rakefile b/vendor/plugins/has_many_polymorphs/test/integration/app/Rakefile
new file mode 100644 (file)
index 0000000..2573c13
--- /dev/null
@@ -0,0 +1,19 @@
+# Add your own tasks in files placed in lib/tasks ending in .rake,
+# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
+
+require(File.join(File.dirname(__FILE__), 'config', 'boot'))
+
+require 'rake'
+require 'rake/testtask'
+require 'rake/rdoctask'
+
+require 'tasks/rails'
+
+namespace :test do
+  desc "a new rake task to include generators"
+  Rake::TestTask.new(:generators) do |t|
+    t.libs << 'lib'
+    t.test_files = FileList['test/generators/*_test.rb']
+    t.verbose = true
+  end
+end