Exception: RSpec::Core::Pending::SkipDeclaredInExample

Inherits:
StandardError
  • Object
show all
Defined in:
lib/rspec/core/pending.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#argumentObject (readonly)

Returns the value of attribute argument.



5
6
7
# File 'lib/rspec/core/pending.rb', line 5

def argument
  @argument
end