github.com/RevenueMonster/sqlike@v1.0.6/sql/util/postgres_test.go (about) 1 package util 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/require" 7 ) 8 9 func TestPostgresUtil(t *testing.T) { 10 utl := PostgresUtil{} 11 12 require.Equal(t, `"abc"`, utl.Quote("abc")) 13 }