17 lines
316 B
Go
17 lines
316 B
Go
|
package parser
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestParseCsv(t *testing.T) {
|
||
|
t.Run("should correctly parse a valid CSV file", func(t *testing.T) {
|
||
|
// create a temp CSV file
|
||
|
// call parse command
|
||
|
// check birthdays and contents
|
||
|
require.FailNow(t, "ToBeImplemented")
|
||
|
})
|
||
|
}
|