Something went wrong on our end
Forked from
FSL / fslpy
1668 commits behind the upstream repository.
-
Paul McCarthy authoredPaul McCarthy authored
test_tempdir.py 1.01 KiB
#!/usr/bin/env python
#
# test_tempdir.py -
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
import os
import os.path as op
import fsl.utils.tempdir as tempdir
def test_tempdir():
# use ctx manager with or without arg
with tempdir.tempdir():
d = os.getcwd()
# dir is removed after ctx manager exit
assert not op.exists(d)
with tempdir.tempdir() as td:
d = td
assert op.exists(d)
# pwd is dir when in ctx manager
assert op.realpath(os.getcwd()) == op.realpath(td)
assert not op.exists(d)
def test_tempdir_root():
# this first tempdir is then used
# as the root for another temp dir
with tempdir.tempdir() as root:
with tempdir.tempdir(root=root) as td:
assert op.dirname(td) == root
def test_tempdir_changeto():
cwd = op.realpath(os.getcwd())
# make sure cwd is not changed
with tempdir.tempdir(changeto=False):
assert op.realpath(os.getcwd()) == cwd
assert op.realpath(os.getcwd()) == cwd