diff options
Diffstat (limited to 'tests/test_pycco.py')
-rw-r--r-- | tests/test_pycco.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_pycco.py b/tests/test_pycco.py index ae7d0e4..1c1acb8 100644 --- a/tests/test_pycco.py +++ b/tests/test_pycco.py @@ -1,10 +1,10 @@ import copy -import os +import os.path import tempfile import time -import os.path + import pytest -from hypothesis import given, example, assume +from hypothesis import given, example from hypothesis.strategies import lists, text, booleans, choices, none import pycco.generate_index as generate_index @@ -162,6 +162,7 @@ def test_generate_index(path_lists, outdir_list): outdir = os.path.join(*outdir_list) generate_index.generate_index(file_paths, outdir=outdir) + def test_flatten_sources(tmpdir): sources = [str(tmpdir)] expected_sources = [] |