module RspecInContext
Main wrapping module
Base module
Constants
- Context
Context
struct @attr [Proc] block what will be executed in the test context @attr [Class] owner current rspec context class. This will be used to know where a define_context has been defined @attr [String | Symbol] name represent the name by which the context can be find. @attr [String | Symbol] namespace namespace for context names to avoid collisions @attr [Boolean] silent does the in_context wrap itself into a context with its name or an anonymous context- VERSION
Version of the gem
Public Class Methods
included(base)
click to toggle source
@api private Inclusion convenience of the gem in RSpec
# File lib/rspec_in_context.rb, line 12 def self.included(base) base.include(RspecInContext::InContext) end