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