mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-07 09:41:16 +08:00
12 lines
148 B
Go
12 lines
148 B
Go
package mutex
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestWorkersBusy(t *testing.T) {
|
|
assert.False(t, WorkersBusy())
|
|
}
|