Test: Add test for api/moments_time

This commit is contained in:
Theresa Gresch 2020-02-02 19:40:05 +01:00
parent 8d95900435
commit b6967671c7

View file

@ -0,0 +1,19 @@
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetMomentsTime(t *testing.T) {
t.Run("get geo", func(t *testing.T) {
app, router, conf := NewApiTest()
GetMomentsTime(router, conf)
result := PerformRequest(app, "GET", "/api/v1/moments/time")
assert.Equal(t, http.StatusOK, result.Code)
})
}