dsawardekar/speckle

View on GitHub
lib/matchers/above_matcher.riml

Summary

Maintainability
Test Coverage
class AboveMatcher
  defm match(expected, actual)
    return actual > expected
  end

  defm failure_message_for_match(expected, actual)
    return "expected “#{actual}” to be above “#{expected}”"
  end

  defm failure_message_for_mismatch(expected, actual)
    return "expected “#{actual}” to not be above “#{expected}”"
  end
end