From 13ca3dfe37885cb3cf384a9fcc10fe16866cc223 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 9 Jan 2016 20:30:28 -0600 Subject: [PATCH] Show that even defaults are properly normalized --- tests/unit/test_option_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/test_option_manager.py b/tests/unit/test_option_manager.py index 37c9570..cc23669 100644 --- a/tests/unit/test_option_manager.py +++ b/tests/unit/test_option_manager.py @@ -60,7 +60,7 @@ def test_add_option_with_custom_args(optmanager): assert getattr(option, attr) is True -def test_parse_args(optmanager): +def test_parse_args_normalize_path(optmanager): assert optmanager.options == [] assert optmanager.config_options_dict == {} @@ -74,3 +74,4 @@ def test_parse_args(optmanager): ) assert options.verbose == 3 assert options.config == os.path.abspath('../config.ini') + assert options.exclude == ['E123', 'W234']