mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 08:47:12 +08:00
13 lines
171 B
Go
13 lines
171 B
Go
package mutex
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestWebDAV(t *testing.T) {
|
|
lockSystem := WebDAV("test")
|
|
assert.NotNil(t, lockSystem)
|
|
}
|