mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-04 00:02:03 -04:00
9 lines
109 B
Ruby
9 lines
109 B
Ruby
require 'rake/testtask'
|
|
|
|
task :default => :test
|
|
|
|
desc "Run all tests"
|
|
task :test do
|
|
exec 'script/test'
|
|
end
|