Show that even defaults are properly normalized

This commit is contained in:
Ian Cordasco 2016-01-09 20:30:28 -06:00
parent a7f7bbbeb2
commit 13ca3dfe37

View file

@ -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']