In Files

  • minitest-5.15.0/design_rationale.rb

ThingySpec

end

end

runs 2 specs # runs 3 tests

The specs generate:

Public Instance Methods

setup() click to toggle source
 
               # File minitest-5.15.0/design_rationale.rb, line 30
def setup
  super
  do_some_setup
end
            
test_should_do_the_first_thing() click to toggle source
 
               # File minitest-5.15.0/design_rationale.rb, line 35
def test_should_do_the_first_thing
  assert_equal 1, 1
end
            
There is an updated format of the API docs for this version here.