cloudstack/systemvm/test/python/TestCsConfig.py
Ian Southam bdda01d269 Countless bug fixes, mostly do do with VR redundancy
Also added some new unit tests and adjusted the code to make them work
2015-03-16 11:38:18 +01:00

17 lines
308 B
Python

import unittest
from cs.CsConfig import CsConfig
import merge
class TestCsConfig(unittest.TestCase):
def setUp(self):
merge.DataBag.DPATH = "."
def test_ini(self):
csconfig = CsConfig()
self.assertTrue(csconfig is not None)
if __name__ == '__main__':
unittest.main()