photoprism/internal/api/preview_test.go
2020-05-06 12:56:13 +02:00

18 lines
334 B
Go

package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetPreview(t *testing.T) {
t.Run("successful request", func(t *testing.T) {
app, router, ctx := NewApiTest()
GetPreview(router, ctx)
r := PerformRequest(app, "GET", "/api/v1/preview")
assert.Equal(t, http.StatusOK, r.Code)
})
}