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.
27 lines
382 B
Go
27 lines
382 B
Go
package iox
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCountLines(t *testing.T) {
|
|
const val = `1
|
|
2
|
|
3
|
|
4`
|
|
file, err := os.CreateTemp(os.TempDir(), "test-")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.Remove(file.Name())
|
|
|
|
file.WriteString(val)
|
|
file.Close()
|
|
lines, err := CountLines(file.Name())
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, 4, lines)
|
|
}
|