diff --git a/parser/csv_parser_test.go b/parser/csv_parser_test.go new file mode 100644 index 0000000..40b1516 --- /dev/null +++ b/parser/csv_parser_test.go @@ -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") + }) +}