blob: 7d9feae21b89c1b01f011ab5fe860bc0049a7e49 [file] [log] [blame]
package testutils
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/vexxhost/atmosphere/internal/openstack_helm"
)
func TestDatabaseConf(t *testing.T, config *openstack_helm.DatabaseConf) {
assert.Equal(t, 10, config.ConnectionRecycleTime)
assert.Equal(t, 1, config.MaxPoolSize)
assert.Equal(t, -1, config.MaxRetries)
}