Ejemplo n.º 1
0
 def test3(self):
     a = and_(identity, identity)
     self.assertTrue(a(True))
Ejemplo n.º 2
0
 def test2(self):
     a = and_(identity, not_(identity))
     self.assertFalse(a(True))
Ejemplo n.º 3
0
 def test1(self):
     a = and_(not_(identity), identity)
     self.assertFalse(a(True))
Ejemplo n.º 4
0
 def test3(self):
     a = and_(identity, identity)
     self.assertTrue(a(True))
Ejemplo n.º 5
0
 def test2(self):
     a = and_(identity, not_(identity))
     self.assertFalse(a(True))
Ejemplo n.º 6
0
 def test1(self):
     a = and_(not_(identity), identity)
     self.assertFalse(a(True))