photoprism/internal/mutex/mutex_test.go
2020-07-08 13:18:19 +02:00

12 lines
148 B
Go

package mutex
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestWorkersBusy(t *testing.T) {
assert.False(t, WorkersBusy())
}