class SubThingySpec

Public Instance Methods

setup() click to toggle source
Calls superclass method ThingySpec#setup
# File minitest-5.18.0/design_rationale.rb, line 41
def setup
  super
  do_more_setup
end
test_should_do_the_second_thing() click to toggle source
# File minitest-5.18.0/design_rationale.rb, line 49
def test_should_do_the_second_thing
  assert_equal 2, 2
end