Method: Hardmock#clear_expectations

Defined in:
lib/hardmock.rb

#clear_expectationsObject

Purge the main MockControl of all expectations, restore all concrete stubbed/mocked methods



74
75
76
77
78
# File 'lib/hardmock.rb', line 74

def clear_expectations
  @main_mock_control.clear_expectations if @main_mock_control
  reset_stubs
  $main_mock_control = nil
end