forked from Rockachopa/Timmy-time-dashboard
Move 97 test files from flat tests/ into 13 subdirectories: tests/dashboard/ (8 files — routes, mobile, mission control) tests/swarm/ (17 files — coordinator, docker, routing, tasks) tests/timmy/ (12 files — agent, backends, CLI, tools) tests/self_coding/ (14 files — git safety, indexer, self-modify) tests/lightning/ (3 files — L402, LND, interface) tests/creative/ (8 files — assembler, director, image/music/video) tests/integrations/ (10 files — chat bridge, telegram, voice, websocket) tests/mcp/ (4 files — bootstrap, discovery, executor) tests/spark/ (3 files — engine, tools, events) tests/hands/ (3 files — registry, oracle, phase5) tests/scripture/ (1 file) tests/infrastructure/ (3 files — router cascade, API) tests/security/ (3 files — XSS, regression) Fix Path(__file__) reference in test_mobile_scenarios.py for new depth. Add __init__.py to all test subdirectories. Tests: 1503 passed, 9 failed (pre-existing), 53 errors (pre-existing) https://claude.ai/code/session_019oMFNvD8uSGSSmBMGkBfQN
34 lines
759 B
Python
34 lines
759 B
Python
from timmy.prompts import TIMMY_SYSTEM_PROMPT, TIMMY_STATUS_PROMPT
|
|
|
|
|
|
def test_system_prompt_not_empty():
|
|
assert TIMMY_SYSTEM_PROMPT.strip()
|
|
|
|
|
|
def test_system_prompt_has_timmy_identity():
|
|
assert "Timmy" in TIMMY_SYSTEM_PROMPT
|
|
|
|
|
|
def test_system_prompt_mentions_sovereignty():
|
|
assert "sovereignty" in TIMMY_SYSTEM_PROMPT.lower()
|
|
|
|
|
|
def test_system_prompt_references_local():
|
|
assert "local" in TIMMY_SYSTEM_PROMPT.lower()
|
|
|
|
|
|
def test_system_prompt_is_multiline():
|
|
assert "\n" in TIMMY_SYSTEM_PROMPT
|
|
|
|
|
|
def test_status_prompt_not_empty():
|
|
assert TIMMY_STATUS_PROMPT.strip()
|
|
|
|
|
|
def test_status_prompt_has_timmy():
|
|
assert "Timmy" in TIMMY_STATUS_PROMPT
|
|
|
|
|
|
def test_prompts_are_distinct():
|
|
assert TIMMY_SYSTEM_PROMPT != TIMMY_STATUS_PROMPT
|