예제 #1
0
 def test_pip6_is_higher(self):
     result = installer.is_pip6_or_higher('6.0.6')
     self.assertEqual(result, True)
예제 #2
0
 def test_pip6_exactly(self):
     result = installer.is_pip6_or_higher('6.0')
     self.assertEqual(result, True)
예제 #3
0
 def test_pip6_not_higher(self):
     result = installer.is_pip6_or_higher('1.5.4')
     self.assertEqual(result, False)
예제 #4
0
 def test_pip6_is_higher(self):
     result = installer.is_pip6_or_higher('6.0.6')
     self.assertEqual(result, True)
예제 #5
0
 def test_pip6_exactly(self):
     result = installer.is_pip6_or_higher('6.0')
     self.assertEqual(result, True)
예제 #6
0
 def test_pip6_not_higher(self):
     result = installer.is_pip6_or_higher('1.5.4')
     self.assertEqual(result, False)