1
0
mirror of synced 2025-12-19 18:05:44 -05:00

Initial commit with proposed structure and files.

This commit is contained in:
Petri Autero
2019-01-28 15:53:39 +02:00
parent 94ae6c4436
commit b928cf1073
15 changed files with 396 additions and 0 deletions

View 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 TestCloudSQLMySql(t *testing.T) {
t.Parallel()
assert.Equal(t, "3306", "3306")
}