Files
docker-stacks/tests/base-notebook/units/unit_check_file.py
2022-05-13 02:59:40 +03:00

9 lines
227 B
Python

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from pathlib import Path
file = Path("/tmp/test-file.txt")
assert file.exists()
assert file.read_text() == "test-content\n"