github.com/Tri-stone/burrow@v0.25.0/vent/sqldb/adapters/postgres_adapter_test.go (about) 1 package adapters 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/assert" 7 ) 8 9 func TestPostgresAdapter_CreateTriggerQuery(t *testing.T) { 10 assert.Equal(t, `'Address', NEW."Address", 'Name', NEW."Name", 'Index', NEW."Index"`, 11 jsonBuildObjectArgs("NEW", []string{"Address", "Name", "Index"})) 12 }