(t *testing.T)
| 386 | } |
| 387 | |
| 388 | func TestCollapseLogeDeleteDelete(t *testing.T) { |
| 389 | in := []replicationTask{task_DELETE, task_DELETE} |
| 390 | if _, err := collapseOpLog(in); err == nil { |
| 391 | t.Errorf("collapseOpLog(%v) should have returned an error") |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | func TestCollapseLogeDeleteTouch(t *testing.T) { |
| 396 | in := []replicationTask{task_DELETE, task_TOUCH} |
nothing calls this directly
no test coverage detected