Initial commit with proposed structure and files.
This commit is contained in:
16
test/example_cloud_sql_postgres_test.go
Normal file
16
test/example_cloud_sql_postgres_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
// A basic sanity check of the MySQL example that just deploys and undeploys it to make sure there are no errors in
|
||||
// the templates
|
||||
// TODO: try to actually connect to the RDS DBs and check they are working
|
||||
func TestCloudSQLPostgres(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
assert.Equal(t, "5432", "5432")
|
||||
}
|
||||
Reference in New Issue
Block a user