mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 17:00:23 +00:00
9 lines
239 B
Python
9 lines
239 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
from paperforge.memory.context import get_agent_context
|
|
|
|
|
|
def test_get_agent_context_returns_none_when_no_db():
|
|
assert get_agent_context(Path("/nonexistent/vault")) is None
|