Class: Mocha::Configuration
- Inherits:
-
Object
- Object
- Mocha::Configuration
- Defined in:
- lib/mocha/configuration.rb
Overview
This class allows you to determine what should happen under certain circumstances. In each scenario, Mocha can be configured to do nothing, display a warning message, or raise an exception. The relevant scenario is identified using one of the following symbols:
-
:stubbing_method_unnecessarily
This is useful for identifying unused stubs. Unused stubs are often accidentally introduced when code is refactored. Allowed by default. -
:stubbing_non_existent_method
- This is useful if you want to ensure that methods you're mocking really exist. A common criticism of unit tests with mock objects is that such a test may (incorrectly) pass when an equivalent non-mocking test would (correctly) fail. While you should always have some integration tests, particularly for critical business functionality, this Mocha configuration setting should catch scenarios when mocked methods and real methods have become misaligned. Allowed by default. -
:stubbing_non_public_method
- Many people think that it's good practice only to mock public methods. This is one way to prevent your tests being too tightly coupled to the internal implementation of a class. Such tests tend to be very brittle and not much use when refactoring. Allowed by default. -
:stubbing_method_on_non_mock_object
- If you like the idea of mocking roles not objects and you don't like stubbing concrete classes, this is the setting for you. However, while this restriction makes a lot of sense in Java with its explicit interfaces, it may be moot in Ruby where roles are probably best represented as Modules. Allowed by default. -
:stubbing_method_on_nil
- This is usually done accidentally, but there might be rare cases where it is intended. Prevented by default.
Typically the configuration would be set globally in a
test_helper.rb
or spec_helper.rb
file. However,
it can also be temporarily overridden locally using the block syntax of the
relevant method. In the latter case, the original configuration settings
are restored when the block is exited.
Constant Summary collapse
- DEFAULTS =
{ :stubbing_method_unnecessarily => :allow, :stubbing_method_on_non_mock_object => :allow, :stubbing_non_existent_method => :allow, :stubbing_non_public_method => :allow, :stubbing_method_on_nil => :prevent }.freeze
Class Method Summary collapse
-
.allow(action) { ... } ⇒ Object
Allow the specified
action
. -
.prevent(action) { ... } ⇒ Object
Raise a StubbingError if if the specified
action
is attempted. -
.warn_when(action) { ... } ⇒ Object
Warn if the specified
action
is attempted.
Class Method Details
.allow(action) { ... } ⇒ Object
Allow the specified action
.
82 83 84 |
# File 'lib/mocha/configuration.rb', line 82 def allow(action, &block) change_config action, :allow, &block end |
.prevent(action) { ... } ⇒ Object
Raise a StubbingError if if the specified action
is
attempted.
108 109 110 |
# File 'lib/mocha/configuration.rb', line 108 def prevent(action, &block) change_config action, :prevent, &block end |
.warn_when(action) { ... } ⇒ Object
Warn if the specified action
is attempted.
95 96 97 |
# File 'lib/mocha/configuration.rb', line 95 def warn_when(action, &block) change_config action, :warn, &block end |