mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
37 lines
966 B
Python
37 lines
966 B
Python
# Import python libs
|
|
import sys
|
|
|
|
# Import salt libs
|
|
from saltunittest import TestLoader, TextTestRunner
|
|
import integration
|
|
from integration import TestDaemon
|
|
|
|
|
|
class PipModuleTest(integration.ModuleCase):
|
|
'''
|
|
Validate the pip module
|
|
'''
|
|
def setUp(self):
|
|
super(PipModuleTest, self).setUp()
|
|
ret = self.run_function(
|
|
'cmd.which_bin', [['pip2', 'pip', 'pip-python']]
|
|
)
|
|
if not ret:
|
|
self.skipTest("pip not installed")
|
|
|
|
def test_freeze(self):
|
|
'''
|
|
pip.freeze
|
|
'''
|
|
ret = self.run_function('pip.freeze')
|
|
self.assertIsInstance(ret, list)
|
|
self.assertGreater(len(ret), 1)
|
|
|
|
if __name__ == "__main__":
|
|
loader = TestLoader()
|
|
tests = loader.loadTestsFromTestCase(PipModuleTest)
|
|
print('Setting up Salt daemons to execute tests')
|
|
with TestDaemon():
|
|
runner = TextTestRunner(verbosity=1).run(tests)
|
|
sys.exit(runner.wasSuccessful())
|