From d5af0f112eca2c9af0344c589d731cd6b3051acf Mon Sep 17 00:00:00 2001 From: antialias Date: Mon, 20 Aug 2012 17:41:50 -0700 Subject: added json parsing from eip.json file and some basic tests. --- src/leap/eip/tests/tests_config.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/leap/eip/tests/tests_config.py (limited to 'src/leap/eip') diff --git a/src/leap/eip/tests/tests_config.py b/src/leap/eip/tests/tests_config.py new file mode 100644 index 00000000..6534723e --- /dev/null +++ b/src/leap/eip/tests/tests_config.py @@ -0,0 +1,18 @@ + +"""Test config helper functions""" + +import unittest + +from leap.eip import config + +class TestConfig(unittest.TestCase): + """ + Test configuration help functions. + """ + def test_get_config_json(self): + config_js = config.get_config_json() + self.assertTrue(isinstance(config_js, dict)) + self.assertTrue(config_js.has_key('transport')) + self.assertTrue(config_js.has_key('provider')) + self.assertEqual(config_js['provider'], "testprovider.org") + -- cgit v1.2.3