class RSpec2MiniTest::NegativeTestName

Public Instance Methods

assertion_name() click to toggle source
# File lib/rspec2minitest/test_name.rb, line 44
def assertion_name
  "refute_#{@assertion_prefix}#{conjugated}"
end
expectation_name() click to toggle source
# File lib/rspec2minitest/test_name.rb, line 48
def expectation_name
  "wont_#{@matcher_name}"
end
failure_message_method() click to toggle source
# File lib/rspec2minitest/test_name.rb, line 56
def failure_message_method
  :failure_message_for_should_not
end
match_method() click to toggle source
# File lib/rspec2minitest/test_name.rb, line 52
def match_method
  :does_not_match?
end