mirror of
https://github.com/ViViDboarder/abuse-the-force.git
synced 2024-11-01 00:36:30 +00:00
8 lines
114 B
Ruby
8 lines
114 B
Ruby
|
require 'rake/testtask'
|
||
|
|
||
|
Rake::TestTask.new do |t|
|
||
|
t.libs << 'test'
|
||
|
end
|
||
|
|
||
|
desc "Run tests"
|
||
|
task :default => :test
|