Example #1
0
 def testShouldNotSatisfyIfArgIsEqualToGivenValue(self):
     self.assertFalse(gt(5).matches(5))
Example #2
0
 def testShouldSatisfyIfArgIsGreaterThanGivenValue(self):
     self.assertTrue(gt(5).matches(6))
Example #3
0
 def testShouldNotSatisfyIfArgIsLessThanGivenValue(self):
     self.assertFalse(gt(5).matches(4))