2025-01-10 19:17:20 +00:00
|
|
|
package database
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
2025-01-16 18:25:30 +00:00
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2025-01-10 19:17:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestCreateDB(t *testing.T) {
|
2025-01-16 18:25:30 +00:00
|
|
|
t.Setenv("DB_HOST", "")
|
2025-01-10 19:17:20 +00:00
|
|
|
|
2025-01-16 18:25:30 +00:00
|
|
|
assert.Panics(t, func() { createDB() })
|
2025-01-10 19:17:20 +00:00
|
|
|
}
|