Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / Rakefile
1 # Add your own tasks in files placed in lib/tasks ending in .rake,
2 # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
4 require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
6 require 'rake'
7 require 'rake/testtask'
8 require 'rake/rdoctask'
9
10 require 'tasks/rails'
11
12 namespace :test do
13   desc "a new rake task to include generators"
14   Rake::TestTask.new(:generators) do |t|
15     t.libs << 'lib'
16     t.test_files = FileList['test/generators/*_test.rb']
17     t.verbose = true
18   end
19 end