This is the only one in my rakefile.
Rake::TestTask.new do |t| t.libs << "test" t.test_files = FileList['test/test*.rb'] t.verbose = true end
When I run rake, the output I get is
uninitialized constant Rake::TestTask
What am I doing wrong? I want my rake file to run all the unit tests that I specify. Any input would be helpful. thanks
source share