Make the tests work.

This commit is contained in:
Dan Milne
2024-10-27 22:38:44 +11:00
commit a5d891c412
15 changed files with 343 additions and 0 deletions

12
Rakefile Normal file
View File

@@ -0,0 +1,12 @@
# frozen_string_literal: true
require "bundler/gem_tasks"
require "minitest/test_task"
Minitest::TestTask.create
require "rubocop/rake_task"
RuboCop::RakeTask.new
task default: %i[test rubocop]