ISSUES THAT DO NOT FOLLOW THIS TEMPLATE WILL BE CLOSED IMMEDIATELY.
Expected Behavior
The authlogic/test_case.rb should be extended with the following includes:
module Authlogic
module TestCase
...
end
...
# new includes
::Minitest::Unit::TestCase.send(:include, TestCase) if defined?(::Minitest::Unit::TestCase)
::Minitest::Test.send(:include, TestCase) if defined?(::Minitest::Test)
end
Actual Behavior
Tests fail because Minitest removed a legacy compatibility layer in v5.19.0 and test classes are no longer included.
ISSUES THAT DO NOT FOLLOW THIS TEMPLATE WILL BE CLOSED IMMEDIATELY.
Expected Behavior
The
authlogic/test_case.rbshould be extended with the following includes:Actual Behavior
Tests fail because Minitest removed a legacy compatibility layer in v5.19.0 and test classes are no longer included.