diff options
author | hut <hut@hut.pm> | 2018-05-13 21:44:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-13 21:44:49 +0200 |
commit | cce3f5d6b2c9c336956ccdfefed392f2a658afe1 (patch) | |
tree | 59f13076dc94001fc5eafb2cb6399459ffde364d /tests | |
parent | edd4f71863840f07e0e7df5c641f2a168f605573 (diff) | |
parent | bed6df84d4513bee939bc4ec7c3e3684c62b53b8 (diff) | |
download | ranger-cce3f5d6b2c9c336956ccdfefed392f2a658afe1.tar.gz |
Merge branch 'master' into copymapch
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ranger/core/__init__.py | 0 | ||||
-rw-r--r-- | tests/ranger/core/test_main.py | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/ranger/core/__init__.py b/tests/ranger/core/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/ranger/core/__init__.py diff --git a/tests/ranger/core/test_main.py b/tests/ranger/core/test_main.py new file mode 100644 index 00000000..d992b8a7 --- /dev/null +++ b/tests/ranger/core/test_main.py @@ -0,0 +1,18 @@ +import collections +import os + +from ranger.core import main + + +def test_get_paths(): + args_tuple = collections.namedtuple('args', 'paths') + args = args_tuple(paths=None) + + paths = main.get_paths(args) + + for path in paths: + assert os.path.exists(path) + + +if __name__ == '__main__': + test_get_paths() |