Sha256: ebeb37189326f0f7031627f588bfbf82a1ee37051d6a4de708cba22cee04a35d
Contents?: true
Size: 1.79 KB
Versions: 27
Compression:
Stored size: 1.79 KB
Contents
require "spec_helper" describe RSpec::Core::Deprecation do describe "#deprecate" do context "old API with individual args" do it "includes the method to deprecate" do expect(RSpec.configuration.reporter).to receive(:deprecation).with(hash_including :deprecated => "deprecated_method") RSpec.deprecate("deprecated_method") end it "includes the replacement when provided" do expect(RSpec.configuration.reporter).to receive(:deprecation).with(hash_including :deprecated => "deprecated_method", :replacement => "replacement") RSpec.deprecate("deprecated_method", "replacement") end it "adds the call site" do expect_deprecation_with_call_site(__FILE__, __LINE__ + 1) RSpec.deprecate("deprecated_method") end it "doesn't override the existing callsite" do expect(RSpec.configuration.reporter).to receive(:deprecation).with(hash_including :call_site => "/path") RSpec.deprecate("deprecated_method", :call_site => "/path") end end context "new API with a hash after the first arg" do it "passes the hash to the reporter" do expect(RSpec.configuration.reporter).to receive(:deprecation).with(hash_including :deprecated => "deprecated_method", :replacement => "replacement") RSpec.deprecate("deprecated_method", :replacement => "replacement") end it "adds the call site" do expect_deprecation_with_call_site(__FILE__, __LINE__ + 1) RSpec.deprecate("deprecated_method") end end end describe "#warn_deprecation" do it "puts message in a hash" do expect(RSpec.configuration.reporter).to receive(:deprecation).with(hash_including :message => "this is the message") RSpec.warn_deprecation("this is the message") end end end
Version data entries
27 entries across 27 versions & 8 rubygems