Test: Add test for api/preview

This commit is contained in:
Theresa Gresch 2020-02-03 15:50:46 +01:00
parent 000735188c
commit 2509952992

View file

@ -0,0 +1,17 @@
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetPreview(t *testing.T) {
t.Run("invalid type", func(t *testing.T) {
app, router, ctx := NewApiTest()
GetPreview(router, ctx)
result := PerformRequest(app, "GET", "/api/v1/preview")
assert.Equal(t, http.StatusOK, result.Code)
})
}