mirror of
https://github.com/apache/cloudstack
synced 2026-08-02 21:38:30 +00:00
17 lines
308 B
Python
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()
|