Sha256: 0830197cdae260d02472655ff4fbe2e9fa23a504782c704d24fd90b2c639533e
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
Feature: `--warnings` option (run with warnings enabled) Use the `--warnings` option to run specs with warnings enabled. @unsupported-on-rbx Scenario: Given a file named "example_spec.rb" with: """ruby RSpec.describe do it 'generates warning' do $undefined end end """ When I run `rspec --warnings example_spec.rb` Then the output should contain "warning" @ruby-2-7 Scenario: Given a file named "example_spec.rb" with: """ruby def foo(**kwargs) kwargs end RSpec.describe do it "should warn about keyword arguments with 'rspec -w'" do expect(foo({a: 1})).to eq({a: 1}) end end """ When I run `rspec -w example_spec.rb` Then the output should contain "warning" @unsupported-on-rbx Scenario: Given a file named "example_spec.rb" with: """ruby RSpec.describe do it 'generates warning' do $undefined end end """ When I run `rspec example_spec.rb` Then the output should not contain "warning"
Version data entries
5 entries across 5 versions & 1 rubygems