summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEric N. Vander Weele <ericvw@gmail.com>2019-08-29 16:34:30 -0400
committerEric N. Vander Weele <ericvw@gmail.com>2019-08-29 16:36:47 -0400
commitc2216c0ddfea7f981670eff06ba1b832f1fd2f69 (patch)
treea8bd15ea9cbd6d072fa0e9a4f6dc8a1b68a5e47c /tests
parent45ad2faf8f8f3bbeb882f6f98c850ee5e09a897a (diff)
downloadflake8-c2216c0ddfea7f981670eff06ba1b832f1fd2f69.tar.gz
Add typings to ConfigFileFinder constructor
`OptionManager.parse_known_args()` is guaranteed to return a list of remaining argument strings.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_config_file_finder.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/unit/test_config_file_finder.py b/tests/unit/test_config_file_finder.py
index f0f863d..c51e1f2 100644
--- a/tests/unit/test_config_file_finder.py
+++ b/tests/unit/test_config_file_finder.py
@@ -15,7 +15,7 @@ BROKEN_CONFIG_PATH = 'tests/fixtures/config_files/broken.ini'
def test_uses_default_args():
"""Show that we default the args value."""
- finder = config.ConfigFileFinder('flake8', None, [])
+ finder = config.ConfigFileFinder('flake8', [], [])
assert finder.parent == os.path.abspath('.')
@@ -27,14 +27,14 @@ def test_uses_default_args():
def test_windows_detection(platform, is_windows):
"""Verify we detect Windows to the best of our knowledge."""
with mock.patch.object(sys, 'platform', platform):
- finder = config.ConfigFileFinder('flake8', None, [])
+ finder = config.ConfigFileFinder('flake8', [], [])
assert finder.is_windows is is_windows
def test_cli_config():
"""Verify opening and reading the file specified via the cli."""
cli_filepath = CLI_SPECIFIED_FILEPATH
- finder = config.ConfigFileFinder('flake8', None, [])
+ finder = config.ConfigFileFinder('flake8', [], [])
parsed_config = finder.cli_config(cli_filepath)
assert parsed_config.has_section('flake8')
@@ -42,7 +42,7 @@ def test_cli_config():
def test_cli_config_double_read():
"""Second request for CLI config is cached."""
- finder = config.ConfigFileFinder('flake8', None, [])
+ finder = config.ConfigFileFinder('flake8', [], [])
parsed_config = finder.cli_config(CLI_SPECIFIED_FILEPATH)
boom = Exception("second request for CLI config not cached")
@@ -113,14 +113,14 @@ def test_local_config_files(args, extra_config_files, expected):
def test_local_configs():
"""Verify we return a ConfigParser."""
- finder = config.ConfigFileFinder('flake8', None, [])
+ finder = config.ConfigFileFinder('flake8', [], [])
assert isinstance(finder.local_configs(), configparser.RawConfigParser)
def test_local_configs_double_read():
"""Second request for local configs is cached."""
- finder = config.ConfigFileFinder('flake8', None, [])
+ finder = config.ConfigFileFinder('flake8', [], [])
first_read = finder.local_configs()
boom = Exception("second request for local configs not cached")