Browse Source

Adding missing tests for utils

pull/4/head
Ryan Reed 2 years ago
parent
commit
1c0fe49906
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      tests/test_utils.py

+ 2
- 0
tests/test_utils.py View File

@ -19,6 +19,8 @@ def test_check_path():
assert check_path(existing_dir) is True assert check_path(existing_dir) is True
assert check_path(nonexisting_dir) is False assert check_path(nonexisting_dir) is False
assert check_path(symlink_dir, is_symlink=True) is True assert check_path(symlink_dir, is_symlink=True) is True
assert check_path(symlink_dir) is False
assert check_path(existing_dir, is_symlink=True) is False
assert check_path(cache_path) is False assert check_path(cache_path) is False


Loading…
Cancel
Save