(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestIsDiffSmallerEmptyContent(t *testing.T) { |
| 82 | if IsDiffSmaller("some patch", "") { |
| 83 | t.Error("expected false for empty content") |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | func TestChainedReversePatches(t *testing.T) { |
| 88 | // Simulate version chain: v1 → v2 → v3 (current) |
nothing calls this directly
no test coverage detected