b453f6cb23
Scripting Clean Up * fixupscripts * addtests
14 lines
183 B
Go
14 lines
183 B
Go
package database
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreateDB(t *testing.T) {
|
|
t.Setenv("DB_HOST", "")
|
|
|
|
assert.Panics(t, func() { createDB() })
|
|
}
|