def test_register(self): expect(expect.matcher('not_eq')) == NotEqual expect(expect.matcher('ne')) == NotEqual expect(expect.matcher('__ne__')) == NotEqual
def test_register(self): expect(expect.matcher('equal')) == Identical
def test_register(self): expect(expect.matcher('string')) == String
def test_register(self): expect(expect.matcher('float')) == Float
def test_register(self): expect(expect.matcher('not_match')) == NotMatch
def test_register(self): expect(expect.matcher('contain')) == Contain
def test_register(self): expect(expect.matcher('change')) == Change
def test_register(self): expect(expect.matcher('empty')) == Empty
def test_register(self): expect(expect.matcher('truthy')) == Truthy
def test_register(self): expect(expect.matcher('falsy')) == Falsy
def test_register(self): expect(expect.matcher('respond_to')) == RespondTo
def test_register(self): expect(expect.matcher('called_once_with')) == CalledOnceWith
def test_register(self): expect(expect.matcher('not_contain')) == NotContain
def test_register(self): expect(expect.matcher("not_equal")) == NotIdentical
def test_it_can_return_matcher(self): expect.register('test_matcher', TestMatcher) matcher = expect.matcher('test_matcher') expect(matcher) == TestMatcher
def test_register(self): expect(expect.matcher('above')) == Above
def test_register(self): expect(expect.matcher('called')) == Called
def test_register(self): expect(expect.matcher('below')) == Below
def test_register(self): expect(expect.matcher('eq')) == Equal expect(expect.matcher('__eq__')) == Equal
def test_register(self): expect(expect.matcher('within')) == Within
def test_register(self): expect(expect.matcher('none')) == Non
def test_register(self): expect(expect.matcher('throw')) == ExceptionMatcher
def test_register(self): expect(expect.matcher('integer')) == Integer
def test_register(self): expect(expect.matcher('throw_exactly')) == ExactExceptionMatcher
def test_register(self): expect(expect.matcher('instanceof')) == Instanceof
def test_register(self): expect(expect.matcher('match')) == Match
def test_register(self): expect(expect.matcher('length')) == Length
def test_register(self): expect(expect.matcher('ever_called_with')) == EverCalledWith expect(expect.matcher('any_call')) == EverCalledWith
def test_register(self): expect(expect.matcher('not_empty')) == NotEmpty
def test_register(self): expect(expect.matcher('list')) == List
def test_register(self): expect(expect.matcher('dict')) == Dict
def test_register(self): expect(expect.matcher('tuple')) == Tuple