mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-04-27 14:57:43 +00:00
7 lines
114 B
Ruby
7 lines
114 B
Ruby
require 'rake/testtask'
|
|
|
|
task default: 'test'
|
|
|
|
Rake::TestTask.new do |task|
|
|
task.pattern = 'test/*_test.rb'
|
|
end
|