Module: RSpec::Matchers::DSL::Macros::Deprecated Deprecated

Included in:
RSpec::Matchers::DSL::Matcher
Defined in:
lib/rspec/matchers/dsl.rb

Overview

Deprecated.

Use the methods from RSpec::Matchers::DSL::Macros instead.

Defines deprecated macro methods from RSpec 2 for backwards compatibility.

Instance Method Summary (collapse)

Instance Method Details

- (Object) failure_message_for_should(&definition)

275
276
277
278
# File 'lib/rspec/matchers/dsl.rb', line 275
def failure_message_for_should(&definition)
  RSpec.deprecate("`failure_message_for_should`", :replacement => "`failure_message`")
  failure_message(&definition)
end

- (Object) failure_message_for_should_not(&definition)

281
282
283
284
# File 'lib/rspec/matchers/dsl.rb', line 281
def failure_message_for_should_not(&definition)
  RSpec.deprecate("`failure_message_for_should_not`", :replacement => "`failure_message_when_negated`")
  failure_message_when_negated(&definition)
end

- (Object) match_for_should(&definition)

Deprecated.
263
264
265
266
# File 'lib/rspec/matchers/dsl.rb', line 263
def match_for_should(&definition)
  RSpec.deprecate("`match_for_should`", :replacement => "`match`")
  match(&definition)
end

- (Object) match_for_should_not(&definition)

269
270
271
272
# File 'lib/rspec/matchers/dsl.rb', line 269
def match_for_should_not(&definition)
  RSpec.deprecate("`match_for_should_not`", :replacement => "`match_when_negated`")
  match_when_negated(&definition)
end