Merge pull request #35 from igoracmelo/master

Test ScanArgError
pull/38/head
Vinícius Garcia 2023-01-30 09:11:20 -03:00 committed by GitHub
commit e8df0d0c27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -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()