Module: Endo::Matchers

Included in:
Core
Defined in:
lib/endo/matchers.rb,
lib/endo/matchers/equal.rb,
lib/endo/matchers/include.rb,
lib/endo/matchers/base_matcher.rb

Defined Under Namespace

Classes: BaseMatcher, Equal, Include

Instance Method Summary collapse

Instance Method Details

#equal(expected) ⇒ Object



7
8
9
# File 'lib/endo/matchers.rb', line 7

def equal(expected)
  Matchers::Equal.new(expected)
end

#include(expected) ⇒ Object



11
12
13
# File 'lib/endo/matchers.rb', line 11

def include(expected)
  Matchers::Include.new(expected)
end