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