birthdaybot/parser/csv_parser_test.go
2023-06-30 00:37:56 +02:00

16 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")
})
}