Repositories / agent-snapshot.git

test_programs/create_read_delete_transient.py

Clone (read-only): git clone http://git.guha-anderson.com/git/agent-snapshot.git

Branch
257 bytes · 5f286cb81816
import os from pathlib import Path testdata = Path(os.environ["AGENT_SNAPSHOT_TEST_REPO"]) transient = testdata / "transient_runtime.txt" transient.write_text("temporary payload\n") assert transient.read_text() == "temporary payload\n" transient.unlink()