This commit is contained in:
blake.mizerany@gmail.com 2007-09-12 23:44:15 +00:00
parent f5c532306e
commit 0cfd1b78ae
2 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,6 @@ task :default => :test
desc 'Test'
Rake::TestTask.new do |t|
t.libs << 'test'
t.pattern = 'test/*/*_test.rb'
t.pattern = './**/*_test.rb'
t.verbose = true
end

View File

@ -2,5 +2,5 @@ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../../lib/'
require 'sinatra'
get '/test' do
format.xml { body 'blake in xml' }
'test'
end