Sha256: b0290f11f9ba40def9b986944a6490f35f37c084bd33edc9673a81d8d735bb0b

Contents?: true

Size: 1.66 KB

Versions: 5

Compression:

Stored size: 1.66 KB

Contents

Feature: customized message

  In order to get the feedback I want
  As an RSpec user
  I want to customize the failure message per example
  
  Scenario: one additional method
    Given a file named "node_spec.rb" with:
      """
      class Node
        def initialize(state=:waiting)
          @state = state
        end
        def state
          @state
        end
        def waiting?
          @state == :waiting
        end
        def started?
          @state == :started
        end
        def start
          @state = :started
        end
      end

      describe "a new Node" do
        it "should be waiting" do
          node = Node.new(:started) #start w/ started to trigger failure
          node.should be_waiting, "node.state: #{node.state} (first example)"
        end

        it "should not be started" do
          node = Node.new(:started) #start w/ started to trigger failure
          node.should_not be_started, "node.state: #{node.state} (second example)"
        end
      end

      describe "node.start" do
        it "should change the state" do
          node = Node.new(:started) #start w/ started to trigger failure
          lambda {node.start}.should change{node.state}, "expected a change"
        end
      end

      """
    When I run "rspec node_spec.rb --format n"
    Then the stdout should match "3 examples, 3 failures"
    And  the stdout should not match "to return true, got false"
    And  the stdout should not match "to return false, got true"
    And  the stdout should match "node.state: started (first example)"
    And  the stdout should match "node.state: started (second example)"
    And  the stdout should match "expected a change"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rspec-core-2.0.0.a6 features/expectations/customized_message.feature
rspec-core-2.0.0.a5 features/expectations/customized_message.feature
rspec-core-2.0.0.a4 features/expectations/customized_message.feature
rspec-core-2.0.0.a3 features/expectations/customized_message.feature
rspec-core-2.0.0.a2 features/expectations/customized_message.feature