birthdaybot/parser/csv_parser_test.go

17 lines
316 B
Go
Raw Normal View History

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