11 lines
167 B
Go
11 lines
167 B
Go
package textfmt_test
|
|
|
|
import (
|
|
"code.squareroundforest.org/arpio/notation"
|
|
"testing"
|
|
)
|
|
|
|
func logBytes(t *testing.T, s string) {
|
|
t.Log(notation.Sprint([]byte(s)))
|
|
}
|