mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
11 lines
162 B
Text
11 lines
162 B
Text
![]() |
require 'rake/testtask'
|
||
|
|
||
|
task :default => :test
|
||
|
|
||
|
desc 'Test'
|
||
|
Rake::TestTask.new do |t|
|
||
|
t.libs << 'test'
|
||
|
t.pattern = 'test/*/*_test.rb'
|
||
|
t.verbose = true
|
||
|
end
|