19 lines
353 B
Go
19 lines
353 B
Go
package bytes_test
|
|
|
|
import "testing"
|
|
|
|
func Todo(t *testing.T) {
|
|
t.Fatalf("TODO")
|
|
}
|
|
|
|
func TestRegexp(t *testing.T) {
|
|
t.Run("only searches the beginning of input", Todo)
|
|
t.Run("position is correct after match", Todo)
|
|
t.Run("fails on unexpected error", Todo)
|
|
t.Run("returns a useful Got value", Todo)
|
|
}
|
|
|
|
func TestRuneReader(t *testing.T) {
|
|
Todo(t)
|
|
}
|