Files
photoprism/internal/mutex/webdav_test.go
Michael Mayer dfb9197d9e Import: Disable auto import by default #4310
Signed-off-by: Michael Mayer <michael@photoprism.app>
2024-05-31 09:58:38 +02:00

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)
}