aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/view_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/view_test.go
parent00324cea108bd7625dffcfdbd0d86a4b67fe3f2f (diff)
downloadgitea-0308d44a16d7bdcda75c1e946dc06efca48ed624.tar.gz
gitea-0308d44a16d7bdcda75c1e946dc06efca48ed624.zip
fix #1643 and improve integration test (#1645)
Diffstat (limited to 'integrations/view_test.go')
-rw-r--r--integrations/view_test.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/integrations/view_test.go b/integrations/view_test.go
deleted file mode 100644
index 26d8348afe..0000000000
--- a/integrations/view_test.go
+++ /dev/null
@@ -1,30 +0,0 @@
-// 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 TestViewRepo(t *testing.T) {
- prepareTestEnv(t)
-
- req, err := http.NewRequest("GET", "/user2/repo1", nil)
- assert.NoError(t, err)
- resp := MakeRequest(req)
- assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
-}
-
-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)
-}