You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
403 B
Go
25 lines
403 B
Go
package iox
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestScanner(t *testing.T) {
|
|
const val = `1
|
|
2
|
|
3
|
|
4`
|
|
reader := strings.NewReader(val)
|
|
scanner := NewTextLineScanner(reader)
|
|
var lines []string
|
|
for scanner.Scan() {
|
|
line, err := scanner.Line()
|
|
assert.Nil(t, err)
|
|
lines = append(lines, line)
|
|
}
|
|
assert.EqualValues(t, []string{"1", "2", "3", "4"}, lines)
|
|
}
|