aboutsummaryrefslogtreecommitdiff
path: root/pocketbook/tests/conftest.py
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-02 17:09:42 -0400
committerCraig Jennings <c@cjennings.net>2026-07-02 17:09:42 -0400
commitca59dcb2717d1f32200e3d8c87e136abe3572c6e (patch)
tree9f145597ed19dd2b22910c351e7a733153bb4ac6 /pocketbook/tests/conftest.py
parent5733ee098e0eefe27da8fddcdaa98a1f19d453fd (diff)
downloadarchsetup-ca59dcb2717d1f32200e3d8c87e136abe3572c6e.tar.gz
archsetup-ca59dcb2717d1f32200e3d8c87e136abe3572c6e.zip
chore(pocketbook)!: remove the in-tree pocketbook package
Craig's finish-or-cancel checkpoint resolved to remove: the app left daily use in May and the org-capture popup covers quick notes. The pip install, launcher, and Super+P bind went with it (dotfiles a750cb4); the three pocketbook tasks are closed.
Diffstat (limited to 'pocketbook/tests/conftest.py')
-rw-r--r--pocketbook/tests/conftest.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/pocketbook/tests/conftest.py b/pocketbook/tests/conftest.py
deleted file mode 100644
index db04f88..0000000
--- a/pocketbook/tests/conftest.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import pytest
-
-
-@pytest.fixture
-def notes_dir(tmp_path):
- """Temporary directory for note storage."""
- d = tmp_path / "quicknotes"
- d.mkdir()
- return d
-
-
-@pytest.fixture
-def sample_note_file(notes_dir):
- """A sample note file on disk."""
- path = notes_dir / "0001-20260101-120000-abc12.txt"
- path.write_text("Shopping List\n\nMilk\nEggs\nBread\n")
- return path