()
| 86 | |
| 87 | |
| 88 | def test_empty_messages_abstains(): |
| 89 | sig = StructuralSignal() |
| 90 | row = {"messages": []} |
| 91 | vote = sig.predict(row) |
| 92 | assert vote.abstained |
| 93 | |
| 94 | |
| 95 | def test_uses_last_user_message(): |
nothing calls this directly
no test coverage detected