1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/RakeFile
blake.mizerany@gmail.com 3580217b52 * Pretty Urls
* RakeFile
2007-09-11 23:16:35 +00:00

10 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