Exception: RSpec::Core::Pending::SkipDeclaredInExample
- Inherits:
-
StandardError
- Object
- StandardError
- RSpec::Core::Pending::SkipDeclaredInExample
- Defined in:
- lib/rspec/core/pending.rb
Instance Attribute Summary collapse
-
#argument ⇒ Object
readonly
Returns the value of attribute argument.
Instance Method Summary collapse
-
#initialize(argument) ⇒ SkipDeclaredInExample
constructor
A new instance of SkipDeclaredInExample.
Constructor Details
#initialize(argument) ⇒ SkipDeclaredInExample
Returns a new instance of SkipDeclaredInExample.
7 8 9 10 |
# File 'lib/rspec/core/pending.rb', line 7 def initialize(argument) super(argument.to_s) @argument = argument end |
Instance Attribute Details
#argument ⇒ Object (readonly)
Returns the value of attribute argument.
5 6 7 |
# File 'lib/rspec/core/pending.rb', line 5 def argument @argument end |