File: iochan_test.go

package info (click to toggle)
golang-github-mitchellh-iochan 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 76 kB
  • sloc: makefile: 2
file content (24 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package iochan

import (
	"bytes"
	"reflect"
	"testing"
)

func TestDelimReader(t *testing.T) {
	buf := new(bytes.Buffer)
	buf.WriteString("foo\nbar\nbaz")

	ch := DelimReader(buf, '\n')

	results := make([]string, 0, 3)
	expected := []string{"foo\n", "bar\n", "baz"}
	for v := range ch {
		results = append(results, v)
	}

	if !reflect.DeepEqual(results, expected) {
		t.Fatalf("unexpected results: %#v", results)
	}
}