Example #1
0
 def test_pip6_is_higher(self):
     result = is_pip6_or_higher('6.0.6')
     self.assertEqual(result, True)
Example #2
0
 def test_pip6_exactly(self):
     result = is_pip6_or_higher('6.0')
     self.assertEqual(result, True)
Example #3
0
 def test_pip6_not_higher(self):
     result = is_pip6_or_higher('1.5.4')
     self.assertEqual(result, False)
 def test_pip6_is_higher(self):
     result = is_pip6_or_higher('6.0.6')
     self.assertEqual(result, True)
 def test_pip6_exactly(self):
     result = is_pip6_or_higher('6.0')
     self.assertEqual(result, True)
 def test_pip6_not_higher(self):
     result = is_pip6_or_higher('1.5.4')
     self.assertEqual(result, False)