To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorCustom deprecation stream
Define a custom output stream for warning about deprecations (default
$stderr
).
RSpec.configure do |c|
c.deprecation_stream = File.open('deprecations.txt', 'w')
end
or
RSpec.configure { |c| c.deprecation_stream = 'deprecations.txt' }
or pass --deprecation-out
- Background
-
- Given
-
a file named "lib/foo.rb" with:
class Foo def bar RSpec.deprecate "Foo#bar" end end
- Scenarios
-
- Default - print deprecations to `$stderr`
- Configure using the path to a file
- Configure using a `File` object
- configure using the CLI `--deprecation-out` option
- Default - print deprecations to `$stderr`
-
- Given
-
a file named "spec/example_spec.rb" with:
require "foo" RSpec.describe "calling a deprecated method" do example { Foo.new.bar } end
- When
-
I run
rspec spec/example_spec.rb
- Then
- the output should contain "Deprecation Warnings:\n\nFoo#bar is deprecated"
- Configure using the path to a file
-
- Given
-
a file named "spec/example_spec.rb" with:
require "foo" RSpec.configure {|c| c.deprecation_stream = 'deprecations.txt' } RSpec.describe "calling a deprecated method" do example { Foo.new.bar } end
- When
-
I run
rspec spec/example_spec.rb
- Then
- the output should not contain "Deprecation Warnings:"
- But
- the output should contain "1 deprecation logged to deprecations.txt"
- And
- the file "deprecations.txt" should contain "Foo#bar is deprecated"
- Configure using a `File` object
-
- Given
-
a file named "spec/example_spec.rb" with:
require "foo" RSpec.configure do |c| c.deprecation_stream = File.open('deprecations.txt', 'w') end RSpec.describe "calling a deprecated method" do example { Foo.new.bar } end
- When
-
I run
rspec spec/example_spec.rb
- Then
- the output should not contain "Deprecation Warnings:"
- But
- the output should contain "1 deprecation logged to deprecations.txt"
- And
- the file "deprecations.txt" should contain "Foo#bar is deprecated"
- configure using the CLI `--deprecation-out` option
-
- Given
-
a file named "spec/example_spec.rb" with:
require "foo" RSpec.describe "calling a deprecated method" do example { Foo.new.bar } end
- When
-
I run
rspec spec/example_spec.rb --deprecation-out deprecations.txt
- Then
- the output should not contain "Deprecation Warnings:"
- But
- the output should contain "1 deprecation logged to deprecations.txt"
- And
- the file "deprecations.txt" should contain "Foo#bar is deprecated"
Last published 3 months ago by Jon Rowe.