package main
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestMakeConfig(t *testing.T) {
config := &DbConfig{
"postgres",
"localhost",
"travis",
"",
5432,
"Testing",
"admin",
}
err := config.Save()
assert.Nil(t, err)
func Test(t *testing.T) {
assert.Equal(t, "", "")