Sha256: f6dacf5acb8f2774fa0d1f8969196e145ca4aa3de715c751c335ccb7849622fa

Contents?: true

Size: 883 Bytes

Versions: 4

Compression:

Stored size: 883 Bytes

Contents

Feature: Nested example groups

  As an RSpec user
  I want to nest examples groups
  So that I can better organize my examples

  Scenario Outline: Nested example groups
    Given a file named "nested_example_groups.rb" with:
    """
    require 'rspec/autorun'
    require 'rspec/expectations'
    Rspec::Core::ExampleGroup.send(:include, Rspec::Matchers)

    describe "Some Object" do
      describe "with some more context" do
        it "should do this" do
          true.should be_true
        end
      end
      describe "with some other context" do
        it "should do that" do
          false.should be_false
        end
      end
    end
    """
    When I run "rspec nested_example_groups.rb -fn"
    Then the stdout should match /^Some Object/
    And the stdout should match /^\s+with some more context/
    And the stdout should match /^\s+with some other context/

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rspec-core-2.0.0.a5 features/example_groups/nested_groups.feature
rspec-core-2.0.0.a4 features/example_groups/nested_groups.feature
rspec-core-2.0.0.a3 features/example_groups/nested_groups.feature
rspec-core-2.0.0.a2 features/example_groups/nested_groups.feature