Sha256: 5ea11abacf882b8178f504e2df8aadb3c653e4a06c7a2bf443dfc5cdefdbf65f

Contents?: true

Size: 1005 Bytes

Versions: 16

Compression:

Stored size: 1005 Bytes

Contents

Feature: match unless raises with an unexpected error

  In order to know when a match_unless_raises block raises an unexpected error
  As an RSpec user
  I want the error to bubble up

  Background:
    Given a file named "example.rb" with:
      """
      Spec::Matchers.define :be_the_same_as do |expected|
        match_unless_raises SyntaxError do |actual|
          raise "unexpected error"
        end
      end
      """
  
  Scenario: failing examples
    Given a file named "match_unless_raises_spec.rb" with:
      """
      require 'example.rb'

      describe 4 do
        it "is 4" do
          # intentionally fail
          4.should_not be_the_same_as(4)
        end
      end

      describe 5 do
        it "is not 4" do
          # intentionally fail
          5.should be_the_same_as(4)
        end
      end
      """
    When I run "spec match_unless_raises_spec.rb"
    Then the stdout should include "2 examples, 2 failures"
    Then the stdout should include "unexpected error"
  

Version data entries

16 entries across 16 versions & 5 rubygems

Version Path
rspec-1.3.1 features/matchers/match_unless_raises_unexpected_error.feature
rspec-1.3.1.rc features/matchers/match_unless_raises_unexpected_error.feature
rspec-1.3.0 features/matchers/match_unless_raises_unexpected_error.feature
media-path-0.1.2 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
simple-templater-0.0.1.3 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
pupu-0.0.2.pre vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
media-path-0.1.1.pre vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
simple-templater-0.0.1.2 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
media-path-0.1.1 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
simple-templater-0.0.1.1 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
pupu-0.0.2 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
rango-0.0.6 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
rango-0.1.pre vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
pupu-0.0.1 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
media-path-0.1 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature
simple-templater-0.0.1 vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature