Sha256: 5e5611a9c4644eb277a391a2d8dbb0a38a5eee8e1b447bdbb93e39f6400bb3d2

Contents?: true

Size: 1.21 KB

Versions: 40

Compression:

Stored size: 1.21 KB

Contents

Feature: pattern

  Use the pattern option to tell RSpec to look for specs in files that match a pattern other than "**/*_spec.rb".

  Background:
    Given a file named "spec/example_spec.rb" with:
      """ruby
      describe "two specs here" do
        it "passes" do
        end

        it "passes too" do
        end
      end
      """
    And a file named "spec/example_test.rb" with:
      """ruby
      describe "only one spec" do
        it "passes" do
        end
      end
      """

  Scenario: by default, RSpec runs files that match "**/*_spec.rb"
   When I run `rspec`
   Then the output should contain "2 examples, 0 failures"

  Scenario: the --pattern flag makes RSpec run files matching the specified pattern and ignore the default pattern
   When I run `rspec -P "**/*_test.rb"`
   Then the output should contain "1 example, 0 failures"

  Scenario: the --pattern flag can be used to pass in multiple patterns, separated by comma
   When I run `rspec -P "**/*_test.rb,**/*_spec.rb"`
   Then the output should contain "3 examples, 0 failures"

  Scenario: the --pattern flag accepts shell style glob unions
   When I run `rspec -P "**/*_{test,spec}.rb"`
   Then the output should contain "3 examples, 0 failures"

Version data entries

40 entries across 40 versions & 8 rubygems

Version Path
tuktuk-rails-0.0.10 vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature
tuktuk-rails-0.0.9 vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature
tuktuk-rails-0.0.8 vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature
tuktuk-rails-0.0.7 vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature
dxruby_rp5-0.0.2 spec/vendor/rspec-core-2.14.7/features/configuration/pattern.feature
dxruby_rp5-0.0.1 spec/vendor/rspec-core-2.14.7/features/configuration/pattern.feature
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature
rspec-core-3.0.0.beta1 features/configuration/pattern.feature
rspec-core-2.99.0.beta1 features/configuration/pattern.feature
rspec-core-2.14.7 features/configuration/pattern.feature
rspec-core-2.14.6 features/configuration/pattern.feature
clickable_link-0.0.2 vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/pattern.feature
syllable_counter-1.0.0 vendor/bundle/gems/rspec-core-2.14.5/features/configuration/pattern.feature
rspec-core-2.14.5 features/configuration/pattern.feature
rspec-core-2.14.4 features/configuration/pattern.feature
rspec-core-2.14.3 features/configuration/pattern.feature
rspec-core-2.14.2 features/configuration/pattern.feature
rspec-core-2.14.1 features/configuration/pattern.feature
rspec-core-2.14.0 features/configuration/pattern.feature
rspec-core-2.14.0.rc1 features/configuration/pattern.feature