module Matchers

Public Instance Methods

be(expected) click to toggle source
# File lib/pidgin_spec/matchers.rb, line 2
def be(expected)
  Be.new(expected)
end
dey_equal_to(expected) click to toggle source
# File lib/pidgin_spec/matchers.rb, line 6
def dey_equal_to(expected)
  DeyEqualTo.new(expected)
end
end_with(*expected) click to toggle source
# File lib/pidgin_spec/matchers.rb, line 10
def end_with(*expected)
  EndWith.new(expected)
end