Add timed input for inactivity and tests

This commit is contained in:
thePR0M3TH3AN
2025-07-02 23:30:26 -04:00
parent ec4bc51e1f
commit d270236a41
6 changed files with 81 additions and 6 deletions

View File

@@ -31,7 +31,7 @@ def test_auto_sync_triggers_post(monkeypatch):
called = True
monkeypatch.setattr(main, "handle_post_to_nostr", fake_post)
monkeypatch.setattr("builtins.input", lambda _: "5")
monkeypatch.setattr(main, "timed_input", lambda *_: "5")
with pytest.raises(SystemExit):
main.display_menu(pm, sync_interval=0.1)