2017-04-25 09:24:51 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package integrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestViewUser(t *testing.T) {
|
2017-04-28 15:23:28 +02:00
|
|
|
prepareTestEnv(t)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2017-04-28 15:23:28 +02:00
|
|
|
req, err := http.NewRequest("GET", "/user2", nil)
|
2017-04-25 09:24:51 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
resp := MakeRequest(req)
|
|
|
|
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
|
|
|
|
}
|