mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
11 lines
164 B
Ruby
11 lines
164 B
Ruby
require 'rake/testtask'
|
|
|
|
task default: 'test'
|
|
|
|
Rake::TestTask.new do |task|
|
|
task.pattern = 'test/*_test.rb'
|
|
end
|
|
|
|
task :clean do
|
|
FileUtils.rm_rf('test_bin')
|
|
end
|