Stubbed missing tests

This commit is contained in:
Brandon Dyck 2024-09-10 16:58:34 -06:00
parent 0aa8a89014
commit 6919e604ad
3 changed files with 32 additions and 0 deletions

View File

@ -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) {

7
cursor/helper_test.go Normal file
View File

@ -0,0 +1,7 @@
package cursor_test
import "testing"
func TestBufferedReader(t *testing.T) {
Todo(t)
}

View File

@ -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)
}