Exemplo n.º 1
0
 def test_two(self):
     a = predicats.oftype(int)
     b = predicats.pred(a)
     assert b('10') is False
Exemplo n.º 2
0
 def test_three(self):
     a = predicats.oftype(str)
     assert a('10') is True
Exemplo n.º 3
0
 def test_one(self):
     a = predicats.oftype(int)
     b = predicats.pred(a)
     assert b(0) is True
Exemplo n.º 4
0
 def test_two(self):
     a = predicats.oftype(str)
     assert a(10) is False
Exemplo n.º 5
0
 def test_one(self):
     a = predicats.oftype(int)
     assert a(0) is True
Exemplo n.º 6
0
 def test_one(self):
     a = predicats.oftype(int)
     assert ~a(10) is False
Exemplo n.º 7
0
 def test_two(self):
     a = predicats.oftype(int)
     b = predicats.gt(0)
     c = a | b
     assert c(-10) is True
Exemplo n.º 8
0
 def test_one(self):
     a = predicats.oftype(int)
     b = predicats.gt(0)
     c = a & b
     assert c(10) is True