From 0308d44a16d7bdcda75c1e946dc06efca48ed624 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sun, 30 Apr 2017 13:08:09 +0800 Subject: fix #1643 and improve integration test (#1645) --- integrations/repo_test.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 integrations/repo_test.go (limited to 'integrations/repo_test.go') diff --git a/integrations/repo_test.go b/integrations/repo_test.go new file mode 100644 index 0000000000..37874c275d --- /dev/null +++ b/integrations/repo_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 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) +} -- cgit v1.2.3