(t *testing.T)
| 545 | } |
| 546 | |
| 547 | func TestHashLocalFile_NonexistentFile(t *testing.T) { |
| 548 | _, err := HashLocalFile("/nonexistent/path.md") |
| 549 | if err == nil { |
| 550 | t.Fatal("expected error for nonexistent file") |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | // Verify timestamps are set in state |
| 555 | func TestEngine_StateTimestamps(t *testing.T) { |
nothing calls this directly
no test coverage detected