mirror of https://github.com/pressly/goose.git
24 lines
514 B
Go
24 lines
514 B
Go
package main
|
|
|
|
import (
|
|
// "fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestBasics(t *testing.T) {
|
|
|
|
dbconf, err := makeDBConfDetails("db-sample", "test")
|
|
if err != nil {
|
|
t.Error("couldn't create DBConf")
|
|
}
|
|
|
|
got := []string{dbconf.MigrationsDir, dbconf.Env, dbconf.Driver.Name, dbconf.Driver.OpenStr}
|
|
want := []string{"db-sample/migrations", "test", "postgres", "user=liam dbname=tester sslmode=disable"}
|
|
|
|
for i, s := range got {
|
|
if s != want[i] {
|
|
t.Errorf("Unexpected DBConf value. got %v, want %v", s, want[i])
|
|
}
|
|
}
|
|
}
|