cloudstack/systemvm/test/python/TestCsProcess.py

17 lines
317 B
Python

import unittest
from cs.CsProcess import CsProcess
import merge
class TestCsProcess(unittest.TestCase):
def setUp(self):
merge.dataBag.DPATH = "."
def test_init(self):
csprocess = CsProcess({})
self.assertTrue(csprocess is not None)
if __name__ == '__main__':
unittest.main()