cloudstack/systemvm/test/python/TestCsProcess.py
2015-03-16 11:38:12 +01:00

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()