Add a test that needs to be implemented

This commit is contained in:
Miguel de la Cruz 2023-06-30 00:37:56 +02:00
parent 71632311b2
commit ea6ba550b1

16
parser/csv_parser_test.go Normal file
View 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")
})
}