Library providing tools for writing and running RSpec tests.
Class methods for registering deferred examples.
#finclude_deferred(description, *arguments, **keywords, &block) => Object
Includes the deferred examples inside a focused example group.
#fwrap_deferred(description, *arguments, **keywords, &block) => Object
Includes the deferred examples inside a focused example group.
Unlike #include_deferred, a block parameter will be included in the created example group, not passed to the deferred examples. To wrap deferred examples that require a block, create the example group separately and call #include_deferred.
#include_deferred(description, *arguments, **keywords, &block) => Object
Includes the deferred examples with the given definition.
#wrap_deferred(description, *arguments, **keywords, &block) => Object
Includes the deferred examples inside an example group.
Unlike #include_deferred, a block parameter will be included in the created example group, not passed to the deferred examples. To wrap deferred examples that require a block, create the example group separately and call #include_deferred.
#xinclude_deferred(description, *arguments, **keywords, &block) => Object
Includes the deferred examples inside a skipped example group.
#xwrap_deferred(description, *arguments, **keywords, &block) => Object
Includes the deferred examples inside a skipped example group.
Unlike #include_deferred, a block parameter will be included in the created example group, not passed to the deferred examples. To wrap deferred examples that require a block, create the example group separately and call #include_deferred.
Back to Documentation | Versions | 2.8 | Reference | RSpec | RSpec::SleepingKingStudios | RSpec::SleepingKingStudios::Deferred | RSpec::SleepingKingStudios::Deferred::Consumer