class Mocha::Configuration
Configuration settings.
Constants
- DEFAULTS
Public Instance Methods
Allow the specified action
.
@param [Symbol] action one of :stubbing_method_unnecessarily
,
:stubbing_method_on_non_mock_object
,
:stubbing_non_existent_method
,
:stubbing_non_public_method
,
:stubbing_method_on_nil
. @yield optional block during which
the configuration change will be changed before being returned to its
original value at the end of the block.
# File lib/mocha/configuration.rb, line 20 def allow(action, &block) change_config action, :allow, &block end
@private
# File lib/mocha/configuration.rb, line 25 def allow?(action) configuration[action] == :allow end
Raise a {StubbingError} if if the specified action
is
attempted.
@param [Symbol] action one of :stubbing_method_unnecessarily
,
:stubbing_method_on_non_mock_object
,
:stubbing_non_existent_method
,
:stubbing_non_public_method
,
:stubbing_method_on_nil
. @yield optional block during which
the configuration change will be changed before being returned to its
original value at the end of the block.
# File lib/mocha/configuration.rb, line 46 def prevent(action, &block) change_config action, :prevent, &block end
@private
# File lib/mocha/configuration.rb, line 51 def prevent?(action) configuration[action] == :prevent end
@private
# File lib/mocha/configuration.rb, line 56 def reset_configuration @configuration = nil end
Warn if the specified action
is attempted.
@param [Symbol] action one of :stubbing_method_unnecessarily
,
:stubbing_method_on_non_mock_object
,
:stubbing_non_existent_method
,
:stubbing_non_public_method
,
:stubbing_method_on_nil
. @yield optional block during which
the configuration change will be changed before being returned to its
original value at the end of the block.
# File lib/mocha/configuration.rb, line 33 def warn_when(action, &block) change_config action, :warn, &block end
@private
# File lib/mocha/configuration.rb, line 38 def warn_when?(action) configuration[action] == :warn end
Private Instance Methods
@private
# File lib/mocha/configuration.rb, line 68 def change_config(action, new_value, &block) if block_given? temporarily_change_config action, new_value, &block else configuration[action] = new_value end end
@private
# File lib/mocha/configuration.rb, line 63 def configuration @configuration ||= DEFAULTS.dup end
@private
# File lib/mocha/configuration.rb, line 77 def temporarily_change_config(action, new_value, &block) original_value = configuration[action] configuration[action] = new_value yield ensure configuration[action] = original_value end