module Matchy::ExpectationBuilder

Public Class Methods

build_expectation(match, exp, obj) click to toggle source
# File lib/matchy/expectation_builder.rb, line 3
def self.build_expectation(match, exp, obj)
  return Matchy::Expectations::OperatorExpectation.new(obj, match) unless exp
  
  (exp.matches?(obj) != match) ? exp.fail!(match) : exp.pass!(match)
end