From ce5c0f28907babba12bdddc1042a66f02b2f4cf0 Mon Sep 17 00:00:00 2001 From: Igor Melo Date: Mon, 30 Jan 2023 03:01:49 -0300 Subject: [PATCH] Test ScanArgError --- ksql_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ksql_test.go b/ksql_test.go index 17f9409..ba997ef 100644 --- a/ksql_test.go +++ b/ksql_test.go @@ -9,6 +9,15 @@ import ( "github.com/vingarcia/ksql/sqldialect" ) +func TestScanArgError(t *testing.T) { + err := ScanArgError{ + ColumnIndex: 12, + Err: io.EOF, + } + + tt.AssertErrContains(t, err, "input attribute", "index 12", "EOF") +} + func TestConfigSetDefaultValues(t *testing.T) { config := Config{} config.SetDefaultValues()