Ejemplo n.º 1
0
 def test_falsey_path_none(self):
     wc = wheel.WheelCache(False, None)
     assert wc._cache_dir is None
Ejemplo n.º 2
0
 def test_expands_path(self):
     wc = wheel.WheelCache("~/.foo/", None)
     assert wc._cache_dir == expanduser("~/.foo/")