Add a test that needs to be implemented
This commit is contained in:
parent
71632311b2
commit
ea6ba550b1
1 changed files with 16 additions and 0 deletions
16
parser/csv_parser_test.go
Normal file
16
parser/csv_parser_test.go
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
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")
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in a new issue