16 lines
176 B
Go
16 lines
176 B
Go
package bytes_test
|
|
|
|
import "testing"
|
|
|
|
func Todo(t *testing.T) {
|
|
t.Fatalf("TODO")
|
|
}
|
|
|
|
func TestRegexp(t *testing.T) {
|
|
Todo(t)
|
|
}
|
|
|
|
func TestRuneReader(t *testing.T) {
|
|
Todo(t)
|
|
}
|