Ejemplo n.º 1
0
 def test_register(self):
     expect(expect.matcher('not_eq')) == NotEqual
     expect(expect.matcher('ne')) == NotEqual
     expect(expect.matcher('__ne__')) == NotEqual
Ejemplo n.º 2
0
 def test_register(self):
     expect(expect.matcher('equal')) == Identical
Ejemplo n.º 3
0
 def test_register(self):
     expect(expect.matcher('string')) == String
Ejemplo n.º 4
0
 def test_register(self):
     expect(expect.matcher('float')) == Float
Ejemplo n.º 5
0
 def test_register(self):
     expect(expect.matcher('not_match')) == NotMatch
Ejemplo n.º 6
0
 def test_register(self):
     expect(expect.matcher('contain')) == Contain
Ejemplo n.º 7
0
 def test_register(self):
     expect(expect.matcher('change')) == Change
Ejemplo n.º 8
0
 def test_register(self):
     expect(expect.matcher('empty')) == Empty
Ejemplo n.º 9
0
 def test_register(self):
     expect(expect.matcher('truthy')) == Truthy
Ejemplo n.º 10
0
 def test_register(self):
     expect(expect.matcher('falsy')) == Falsy
Ejemplo n.º 11
0
 def test_register(self):
     expect(expect.matcher('respond_to')) == RespondTo
Ejemplo n.º 12
0
 def test_register(self):
     expect(expect.matcher('called_once_with')) == CalledOnceWith
Ejemplo n.º 13
0
 def test_register(self):
     expect(expect.matcher('not_contain')) == NotContain
Ejemplo n.º 14
0
 def test_register(self):
     expect(expect.matcher('falsy')) == Falsy
Ejemplo n.º 15
0
 def test_register(self):
     expect(expect.matcher("not_equal")) == NotIdentical
Ejemplo n.º 16
0
 def test_it_can_return_matcher(self):
     expect.register('test_matcher', TestMatcher)
     matcher = expect.matcher('test_matcher')
     expect(matcher) == TestMatcher
Ejemplo n.º 17
0
 def test_register(self):
     expect(expect.matcher('above')) == Above
Ejemplo n.º 18
0
 def test_register(self):
     expect(expect.matcher('called')) == Called
Ejemplo n.º 19
0
 def test_register(self):
     expect(expect.matcher('below')) == Below
Ejemplo n.º 20
0
 def test_register(self):
     expect(expect.matcher('eq')) == Equal
     expect(expect.matcher('__eq__')) == Equal
Ejemplo n.º 21
0
 def test_register(self):
     expect(expect.matcher('within')) == Within
Ejemplo n.º 22
0
 def test_register(self):
     expect(expect.matcher('none')) == Non
Ejemplo n.º 23
0
 def test_register(self):
     expect(expect.matcher('throw')) == ExceptionMatcher
Ejemplo n.º 24
0
 def test_register(self):
     expect(expect.matcher('integer')) == Integer
Ejemplo n.º 25
0
 def test_register(self):
     expect(expect.matcher('throw_exactly')) == ExactExceptionMatcher
Ejemplo n.º 26
0
 def test_register(self):
     expect(expect.matcher('eq')) == Equal
     expect(expect.matcher('__eq__')) == Equal
Ejemplo n.º 27
0
 def test_register(self):
     expect(expect.matcher('instanceof')) == Instanceof
Ejemplo n.º 28
0
 def test_register(self):
     expect(expect.matcher('not_match')) == NotMatch
Ejemplo n.º 29
0
 def test_register(self):
     expect(expect.matcher('above')) == Above
Ejemplo n.º 30
0
 def test_register(self):
     expect(expect.matcher('truthy')) == Truthy
Ejemplo n.º 31
0
 def test_register(self):
     expect(expect.matcher('below')) == Below
Ejemplo n.º 32
0
 def test_register(self):
     expect(expect.matcher('match')) == Match
Ejemplo n.º 33
0
 def test_register(self):
     expect(expect.matcher('within')) == Within
Ejemplo n.º 34
0
 def test_register(self):
     expect(expect.matcher('length')) == Length
Ejemplo n.º 35
0
 def test_register(self):
     expect(expect.matcher('ever_called_with')) == EverCalledWith
     expect(expect.matcher('any_call')) == EverCalledWith
Ejemplo n.º 36
0
 def test_register(self):
     expect(expect.matcher('not_empty')) == NotEmpty
Ejemplo n.º 37
0
 def test_register(self):
     expect(expect.matcher('list')) == List
Ejemplo n.º 38
0
 def test_register(self):
     expect(expect.matcher('match')) == Match
Ejemplo n.º 39
0
 def test_register(self):
     expect(expect.matcher('dict')) == Dict
Ejemplo n.º 40
0
 def test_register(self):
     expect(expect.matcher('instanceof')) == Instanceof
Ejemplo n.º 41
0
 def test_register(self):
     expect(expect.matcher('tuple')) == Tuple
Ejemplo n.º 42
0
 def test_register(self):
     expect(expect.matcher('not_eq')) == NotEqual
     expect(expect.matcher('ne')) == NotEqual
     expect(expect.matcher('__ne__')) == NotEqual
Ejemplo n.º 43
0
 def test_register(self):
     expect(expect.matcher('not_contain')) == NotContain