diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-08-02 22:09:16 -0700 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-08-03 13:09:16 +0800 |
commit | 7e0654bd9e4f90fc156884afd88cb82ad8df86a8 (patch) | |
tree | 03d320ee4a46d003ef5db801c1740b8d7ed9b966 /routers/user/main_test.go | |
parent | f29458bd3a20d2d89638d5031d801c161f456374 (diff) | |
download | gitea-7e0654bd9e4f90fc156884afd88cb82ad8df86a8.tar.gz gitea-7e0654bd9e4f90fc156884afd88cb82ad8df86a8.zip |
Fix counts on issues dashboard (#2215)
* Fix counts on issues dashboard
* setupSess -> setupSession
* Unit test
* Load repo owners for issues
Diffstat (limited to 'routers/user/main_test.go')
-rw-r--r-- | routers/user/main_test.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/routers/user/main_test.go b/routers/user/main_test.go new file mode 100644 index 0000000000..83c0c65474 --- /dev/null +++ b/routers/user/main_test.go @@ -0,0 +1,33 @@ +// 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 user + +import ( + "fmt" + "os" + "path/filepath" + "testing" + + "code.gitea.io/gitea/models" + "code.gitea.io/gitea/modules/setting" + + _ "github.com/mattn/go-sqlite3" // for the test engine +) + +func TestMain(m *testing.M) { + if err := models.CreateTestEngine("../../models/fixtures/"); err != nil { + fmt.Printf("Error creating test engine: %v\n", err) + os.Exit(1) + } + + setting.AppURL = "https://try.gitea.io/" + setting.RunUser = "runuser" + setting.SSH.Port = 3000 + setting.SSH.Domain = "try.gitea.io" + setting.RepoRootPath = filepath.Join(os.TempDir(), "repos") + setting.AppDataPath = filepath.Join(os.TempDir(), "appdata") + + os.Exit(m.Run()) +} |