module LogTools::SelfTest
This module is the common setup for all tests
It should be included in the toplevel describe blocks
@example
require 'log_tools/test' describe LogTools do end
Public Instance Methods
setup()
click to toggle source
# File lib/log_tools/test.rb, line 45 def setup # Setup code for all the tests end
teardown()
click to toggle source
Calls superclass method
# File lib/log_tools/test.rb, line 49 def teardown if defined? FlexMock flexmock_teardown end super # Teardown code for all the tests end