mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Show that even defaults are properly normalized
This commit is contained in:
parent
a7f7bbbeb2
commit
13ca3dfe37
1 changed files with 2 additions and 1 deletions
|
|
@ -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']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue