minitest-jasmine
The minitest-jasmine filter is for users of the Jasmine behavior-driven test framework. It:
- maps subclasses of
Minitest::Test
todescribe
calls - maps
test_
methods inside subclasses ofMinitest::Test
toit
calls - maps
setup
,teardown
,before
, andafter
calls tobeforeEach
andafterEach
calls - maps
assert
andrefute
calls toexpect
…toBeTruthy()
andtoBeFalsy
calls - maps
assert_equal
,refute_equal
,.must_equal
and.cant_equal
calls toexpect
…toBe()
calls - maps
assert_in_delta
,refute_in_delta
,.must_be_within_delta
,.must_be_close_to
,.cant_be_within_delta
, and.cant_be_close_to
calls toexpect
…toBeCloseTo()
calls - maps
assert_includes
,refute_includes
,.must_include
, and.cant_include
calls toexpect
…toContain()
calls - maps
assert_match
,refute_match
,.must_match
, and.cant_match
calls toexpect
…toMatch()
calls - maps
assert_nil
,refute_nil
,.must_be_nil
, and.cant_be_nill
calls toexpect
…toBeNull()
calls - maps
assert_operator
,refute_operator
,.must_be
, and.cant_be
calls toexpect
…toBeGreaterThan()
ortoBeLessThan
calls