зеркало из https://github.com/github/scientist.git
8 строки
147 B
Ruby
8 строки
147 B
Ruby
|
require "rake/testtask"
|
||
|
|
||
|
task default: "test"
|
||
|
|
||
|
Rake::TestTask.new do |t|
|
||
|
t.test_files = FileList['test/test_helper.rb', 'test/**/*_test.rb']
|
||
|
end
|