Update test task to work again

This commit is contained in:
Mitchell Hashimoto 2011-12-03 15:44:57 -08:00
parent fe442faefa
commit 4d71b7bba3
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ require 'rspec/core/rake_task'
namespace :test do
Rake::TestTask.new do |t|
t.name = "unit"
t.libs << "test/unit"
t.pattern = "test/unit/**/*_test.rb"
t.libs << "test/unit_legacy"
t.pattern = "test/unit_legacy/**/*_test.rb"
end
RSpec::Core::RakeTask.new do |t|