2024-09-10 22:50:14 +00:00
|
|
|
package bytes_test
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func Todo(t *testing.T) {
|
|
|
|
t.Fatalf("TODO")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRegexp(t *testing.T) {
|
2024-09-11 00:45:08 +00:00
|
|
|
t.Run("only searches the beginning of input", Todo)
|
|
|
|
t.Run("position is correct after match", Todo)
|
|
|
|
t.Run("fails on unexpected error", Todo)
|
2024-09-11 20:43:33 +00:00
|
|
|
t.Run("returns a useful Got value", Todo)
|
2024-09-10 22:50:14 +00:00
|
|
|
}
|
2024-09-10 22:52:08 +00:00
|
|
|
|
|
|
|
func TestRuneReader(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|