mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +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)
|
|
}
|