Add initial tests that run Jim's "checks"

This commit is contained in:
Tony Schneider
2023-08-15 08:45:00 -04:00
parent 104b7f67b4
commit 9687825fe0
4 changed files with 41 additions and 2 deletions

9
rakelib/test.rake Normal file
View File

@@ -0,0 +1,9 @@
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs << "tests"
t.test_files = FileList["tests/**/*_test.rb"]
t.verbose = true
end
desc 'Run tests'