dd442ab9e9
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
18 lines
244 B
Go
18 lines
244 B
Go
package photoprism
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
)
|
|
|
|
func TestMoments_Start(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
m := NewMoments(conf)
|
|
err := m.Start()
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|