Sha256: e02d602bdb7dafdf910fde9bca1d7557ddfc4b71b2a21282551516a4607bfe52

Contents?: true

Size: 750 Bytes

Versions: 6

Compression:

Stored size: 750 Bytes

Contents

Feature: nested formatter

  The nested formatter follows the nesting in each spec.

  Scenario: parallel contexts
    Given a file named "simple_example_spec.rb" with:
      """
      describe "first group" do
        context "with context" do
          specify "does something" do
          end
        end
      end
      describe "second group" do
        context "with context" do
          specify "does something" do
          end
        end
      end
      """

    When I run "spec simple_example_spec.rb --format nested"
    Then the exit code should be 0
    And the stdout should include
      """
      first group
        with context
          does something
      second group
        with context
          does something
      """

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
rspec-instructure-1.3.3 features/formatters/nested_formatter.feature
radiant-1.0.0 ruby-debug/ruby/1.8/gems/rspec-1.3.2/features/formatters/nested_formatter.feature
rspec-1.3.2 features/formatters/nested_formatter.feature
rspec-1.3.1 features/formatters/nested_formatter.feature
rspec-1.3.1.rc features/formatters/nested_formatter.feature
rspec-1.3.0 features/formatters/nested_formatter.feature