started implemented tests

rakefile added
This commit is contained in:
2023-07-17 14:14:16 +01:00
parent 4e419fa74f
commit 1dd3ff17cf
4 changed files with 77 additions and 0 deletions

6
rakefile Normal file
View File

@@ -0,0 +1,6 @@
require "rake/testtask"
Rake::TestTask.new do |t|
t.pattern = "test/**/*_test.rb"
end
task default: :test