diff --git a/cursor/cursor_test.go b/cursor/cursor_test.go index 9b10b96..1b7bf33 100644 --- a/cursor/cursor_test.go +++ b/cursor/cursor_test.go @@ -84,6 +84,7 @@ func testCursor[C cursor.Cursor[byte]](t *testing.T, makeCursor func([]byte) C) test.NoError(t, err) test.EqOp(t, data[pos], dst[0]) })) + t.Run("Pos", Todo) } func TestSliceCursor(t *testing.T) { diff --git a/cursor/helper_test.go b/cursor/helper_test.go new file mode 100644 index 0000000..a3fd2a0 --- /dev/null +++ b/cursor/helper_test.go @@ -0,0 +1,7 @@ +package cursor_test + +import "testing" + +func TestBufferedReader(t *testing.T) { + Todo(t) +} diff --git a/parser_test.go b/parser_test.go index d1de26a..7e4e54d 100644 --- a/parser_test.go +++ b/parser_test.go @@ -66,3 +66,27 @@ func TestSlice(t *testing.T) { func TestChoose(t *testing.T) { Todo(t) } + +func TestBind(t *testing.T) { + Todo(t) +} + +func TestReturn(t *testing.T) { + Todo(t) +} + +func TestMap(t *testing.T) { + Todo(t) +} + +func TestSatisfy(t *testing.T) { + Todo(t) +} + +func Try(t *testing.T) { + Todo(t) +} + +func TestLabel(t *testing.T) { + Todo(t) +}