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
11          rescue Exception => e
12          end
13          raise RSpec::Core::PendingExampleFixedError.new if result
14        end
15        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