15 lines
211 B
Go
15 lines
211 B
Go
package core
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMustGetEnvVar(t *testing.T) {
|
|
LoadEnvVars("../../.env")
|
|
|
|
assert.NotPanics(t, func() {
|
|
MustGetEnvVar("TEST_DB_HOST")
|
|
})
|
|
}
|