with_model supports RSpec and Minitest, but projects using Test::Unit::TestCase cannot use its dynamic model/table lifecycle.
WithModel.runner currently accepts only :rspec and :minitest; selecting a Test::Unit runner raises an ArgumentError. This leaves Test::Unit users to reimplement setup/teardown, schema creation, and model cleanup locally.
Add Test::Unit support that registers the existing model/table lifecycle with Test::Unit::TestCase, together with coverage and README setup guidance.
with_modelsupports RSpec and Minitest, but projects usingTest::Unit::TestCasecannot use its dynamic model/table lifecycle.WithModel.runnercurrently accepts only:rspecand:minitest; selecting a Test::Unit runner raises anArgumentError. This leaves Test::Unit users to reimplement setup/teardown, schema creation, and model cleanup locally.Add Test::Unit support that registers the existing model/table lifecycle with
Test::Unit::TestCase, together with coverage and README setup guidance.