eki / mathcraft

A mathtastic computer algebra system.
0 stars 0 forks source link

Publish `minitest-boost` or remove dependency. #18

Open eki opened 1 year ago

eki commented 1 year ago

Either publish minitest-boost so other developers can run the tests, or remove the dependency. Removing the dependency would require changing tests written like this:

test 'parse numbers' do
  # ...
end

Into the normal minitest style:

def test_parse_numbers
  # ...
end

Remember to update the README in either case.