blob: 1eb14ddcd1a82023be7721d54875f2650449ce19 [file] [log] [blame]
package text
import (
"bytes"
"testing"
)
type Test struct {
n int
d string
w string
}
ts := []Test{
{9, `
a b c d e f
- a b c d
e f
a b c d e f
`,
`
a b c d e
f
- a b c
d e f
a b c d e
f
`},
{9, `
a b c d e f
> - a b c d
> e f
a b c d e f
`,
`
a b c d e
f
> - a b c
> d e f
a b c d e
f
`},
{9, `
a b c d e f
> - a b c d
a b c d e f
`,
`
a b c d e
f
> - a b c
> d
a b c d e
f
`},
}
func TestIndent(t *testing.T) {
}