summaryrefslogtreecommitdiffstats
path: root/integrations/user_test.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2017-04-30 13:08:09 +0800
committerBo-Yi Wu <appleboy.tw@gmail.com>2017-04-30 13:08:09 +0800
commit0308d44a16d7bdcda75c1e946dc06efca48ed624 (patch)
treec75453c5a5d59ba59ce7a3939ca183d2d1eaec2f /integrations/user_test.go
parent00324cea108bd7625dffcfdbd0d86a4b67fe3f2f (diff)
downloadgitea-0308d44a16d7bdcda75c1e946dc06efca48ed624.tar.gz
gitea-0308d44a16d7bdcda75c1e946dc06efca48ed624.zip
fix #1643 and improve integration test (#1645)
Diffstat (limited to 'integrations/user_test.go')
-rw-r--r--integrations/user_test.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/integrations/user_test.go b/integrations/user_test.go
new file mode 100644
index 0000000000..f9358c1682
--- /dev/null
+++ b/integrations/user_test.go
@@ -0,0 +1,21 @@
+// 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) {
+ prepareTestEnv(t)
+
+ req, err := http.NewRequest("GET", "/user2", nil)
+ assert.NoError(t, err)
+ resp := MakeRequest(req)
+ assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+}