tmp_path
関数スコープのフィクスチャ
Return a temporary directory path object which is unique to each test function invocation, created as a sub directory of the base temporary directory.
The returned object is a pathlib.Path object.
macOSではmktemp -dで一時ファイルのディレクトリを確認
pytest-of-<ユーザ名>ディレクトリを覗く
TODO:もっと簡単に確認したい(failのメッセージには出ているっぽい)
Path(from_env or tempfile.gettempdir())
Pathを元にmkdirする(tempfileで作るわけでなく、一時ファイルを作れるパスを得て、このクラスで作る)