f5a8c5a45d
Signed-off-by: Michael Mayer <michael@photoprism.app>
11 lines
151 B
Go
11 lines
151 B
Go
package mutex
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestWorkersBusy(t *testing.T) {
|
|
assert.False(t, WorkersRunning())
|
|
}
|