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