(t *testing.T)
| 34 | } |
| 35 | |
| 36 | func TestIndexFromString(t *testing.T) { |
| 37 | index := indexFromString("1.2.3") |
| 38 | if len(index) != 3 || index[0] != 0 || index[1] != 1 || index[2] != 2 { |
| 39 | t.Fail() |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | func TestDelete(t *testing.T) { |
| 44 | tasks := NewTaskList() |
nothing calls this directly
no test coverage detected