mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-16 22:42:57 +00:00
9 lines
227 B
Python
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"
|