Files
worker/checks/calls/init_test.go
Gleb Tv 2c7a0236da feat: publish standalone worker
Separate worker packaging and service lifecycle from the control plane.
2026-07-13 17:55:14 +03:00

12 строки
178 B
Go

package calls
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestIsDBAvailableWithoutInitializedDatabase(t *testing.T) {
assert.False(t, isDBAvailable())
}