Skip to content

Commit

Permalink
added additional assertion to test
Browse files Browse the repository at this point in the history
  • Loading branch information
fullerzz committed Aug 15, 2024
1 parent 0e938cb commit 96035e5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_cache_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

def test_create_cache_manager_dir_not_exists(tmp_path: Path) -> None:
cache_dir = tmp_path / "cache"
assert cache_dir.exists() is False
cache_mgr = CacheManager(cache_dir.as_posix())
assert cache_mgr.cache_dir == cache_dir
assert cache_mgr.cache_dir.exists()
Expand Down

0 comments on commit 96035e5

Please sign in to comment.