Project

General

Profile

Download (345 Bytes) Statistics
| Branch: | Tag: | Revision:
namespace :test do
desc "Test API"
Rake::TestTask.new(:api) do |t|
t.libs << "test"
t.pattern = 'test/functional/api/**/*_test.rb'
t.verbose = true
end
end

namespace :test do
desc "Test lib source"
Rake::TestTask.new(:lib) do |t|
t.libs << "test"
t.pattern = 'test/lib/**/*_test.rb'
t.verbose = true
end
end
(29-29/30)