Sha256: 5f9233799cbc8a3dcff194f747c90245b95bca4b8e207d7282e53a59ffa68232
Contents?: true
Size: 489 Bytes
Versions: 4
Compression:
Stored size: 489 Bytes
Contents
module Spec module Example class ExamplePendingError < StandardError; end class NotYetImplementedError < ExamplePendingError MESSAGE = "Not Yet Implemented" def initialize super(MESSAGE) end end class PendingExampleFixedError < StandardError; end class NoDescriptionError < ArgumentError def initialize(kind, location) super("No description supplied for #{kind} declared on #{location}") end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rspec-1.2.4 | lib/spec/example/errors.rb |
rspec-1.2.3 | lib/spec/example/errors.rb |
rspec-1.2.5 | lib/spec/example/errors.rb |
rspec-1.2.6 | lib/spec/example/errors.rb |