Description
Support for Minitest.
Use Case
I have a number of clients that use Minitest instead of RSpec. That kinda matches my philosophy of minimizing dependencies, though I have no hate for RSpec.
Without having looked, I wonder how much effort it would take to add support to this library.
Example
# Totally making this up on the fly
test 'controllers inherit from ApplicationController' do
assert_zen_true(controllers) { |c| c.superclass_name == 'ApplicationController' }
end
Description
Support for Minitest.
Use Case
I have a number of clients that use Minitest instead of RSpec. That kinda matches my philosophy of minimizing dependencies, though I have no hate for RSpec.
Without having looked, I wonder how much effort it would take to add support to this library.
Example