This file is indexed.

/usr/share/doc/ruby-rspec-core/features/configuration/fail_if_no_examples.feature is in ruby-rspec-core 3.7.0c1e0m0s1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Feature: fail if no examples

  Use the `fail_if_no_examples` option to make RSpec exit with a failure status (by default 1) if there are no examples. Using this option, it is recommended to add a `--require spec_helper` option to `.rspec` file to ensure the `fail_if_no_examples` option is set even if no spec files are loaded.

  This option may be particularly useful when you happen to not run RSpec tests locally, but rely on CI to do this. This prevents from false positive builds, when you expected some RSpec examples to be run, but none were run. Such a situation may be caused by your misconfiguration or regression/major changes in RSpec.

  Background:
    Given a file named "spec/spec_helper.rb" with:
      """ruby
      RSpec.configure { |c| c.fail_if_no_examples = true }
      """
    Given a file named ".rspec" with:
      """ruby
      --require spec_helper
      """
    Given a file named "spec/some.spec.rb" with:
      """ruby
      RSpec.describe 'something' do
        it 'succeeds' do
          true
        end
      end
      """

  Scenario: Examples file name is not matched by RSpec pattern, thus there are no examples run
    When I run `rspec`
    Then it should fail with "0 examples, 0 failures"

  Scenario: Examples file name is matched by RSpec pattern, 1 example is run
    When I run `rspec --pattern spec/**/*.spec.rb`
    Then it should pass with "1 example, 0 failures"