mirror of
https://github.com/lostisland/faraday.git
synced 2025-11-22 00:08:56 -05:00
9 lines
103 B
Ruby
9 lines
103 B
Ruby
require 'rake/testtask'
|
|
|
|
task :default => :test
|
|
|
|
desc "Run all tests"
|
|
task :test do
|
|
exec 'rspec'
|
|
end
|