RSpec Code Examples

 

 

pending spec with no implementation
is pending (PENDING: Not Yet Implemented)
pending command with block format
with content that would fail
is pending (PENDING: No reason given)
with content that would pass
fails
RSpec::Core::PendingExampleFixedError
20          rescue Exception => e
21          end
22          raise RSpec::Core::PendingExampleFixedError.new if result
23        end
24        throw :pending_declared_in_example, message
passing spec
passes
failing spec
fails
expected 2
     got 1

(compared using ==)
27        end
28
29        raise(RSpec::Expectations::ExpectationNotMetError.new(message))
30      end
a failing spec with odd backtraces
fails with a backtrace that has no file
fails with a backtrace containing an erb file
Exception
/foo.html.erb:1 :in `
': foo (RuntimeError)
-1# Couldn't get snippet for /foo.html.erb