1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/Rakefile
2008-02-24 16:43:39 -08:00

9 lines
185 B
Ruby

require 'rubygems'
require 'rake/testtask'
task :default => :test
Rake::TestTask.new do |t|
ENV['SINATRA_ENV'] = 'test'
t.pattern = File.dirname(__FILE__) + "/test/*_test.rb"
end