12 строки
178 B
Go
12 строки
178 B
Go
package calls
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsDBAvailableWithoutInitializedDatabase(t *testing.T) {
|
|
assert.False(t, isDBAvailable())
|
|
}
|