Exception: Spec::Example::NotYetImplementedError

Inherits:
ExamplePendingError show all
Defined in:
lib/gems/rspec-1.1.12/lib/spec/example/errors.rb

Constant Summary collapse

MESSAGE =
"Not Yet Implemented"
RSPEC_ROOT_LIB =
File.expand_path(File.dirname(__FILE__) + "/../..")

Instance Attribute Summary

Attributes inherited from ExamplePendingError

#pending_caller

Instance Method Summary collapse

Constructor Details

#initialize(backtrace) ⇒ NotYetImplementedError

Returns a new instance of NotYetImplementedError.



16
17
18
19
# File 'lib/gems/rspec-1.1.12/lib/spec/example/errors.rb', line 16

def initialize(backtrace)
  super(MESSAGE)
  @pending_caller = pending_caller_from(backtrace)
end