2020-02-03 15:50:46 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetPreview(t *testing.T) {
|
2020-05-13 20:05:33 +02:00
|
|
|
t.Run("not found", func(t *testing.T) {
|
2020-02-03 15:50:46 +01:00
|
|
|
app, router, ctx := NewApiTest()
|
|
|
|
GetPreview(router, ctx)
|
2020-05-06 12:56:13 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/preview")
|
2020-05-13 20:05:33 +02:00
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-03 15:50:46 +01:00
|
|
|
})
|
|
|
|
}
|