diff options
author | kali <kali@leap.se> | 2012-08-08 20:06:14 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-08-08 20:06:14 +0900 |
commit | b1e025a343d0c6019127871acb47d7b295d342e9 (patch) | |
tree | b5d175e1bf8b625433ba8d8ec83cb45b0ccc8618 /tests/test_argparse.py | |
parent | c1fa99be4dc4174a34620324ec5056b793196b53 (diff) | |
parent | 60a51aed9c1ee9249a79b3d996ae86d93a9532de (diff) |
Merge branch 'tests-cleanup' into develop
moved out old broken stuff;
copied a run_scripts entry point for tests;
created a bunch of (mostly stubs) simple tests on secondary
functions.
Diffstat (limited to 'tests/test_argparse.py')
-rw-r--r-- | tests/test_argparse.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/test_argparse.py b/tests/test_argparse.py deleted file mode 100644 index a8ce5091..00000000 --- a/tests/test_argparse.py +++ /dev/null @@ -1,26 +0,0 @@ -from argparse import Namespace -import unittest - -from eip_client.utils import eip_argparse - - -class LeapArgParseTest(unittest.TestCase): - """ - Test argparse options for eip client - """ - - def setUp(self): - """ - get the parser - """ - self.parser = eip_argparse.build_parser() - - def test_debug_mode(self): - """ - test debug mode option - """ - opts = self.parser.parse_args( - ['--debug']) - self.assertEqual(opts, - Namespace(config=None, - debug=True)) |