summaryrefslogtreecommitdiffstats
path: root/modules/convert/main_test.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2020-01-10 15:53:53 +0800
committerGitHub <noreply@github.com>2020-01-10 15:53:53 +0800
commit384c2b342ec01fadb520572666127cb5564e1050 (patch)
tree73357abe356721749e212b90049444cf279a97e4 /modules/convert/main_test.go
parent8878cfa4a125348d92f8163988ac9d3279f27e75 (diff)
downloadgitea-384c2b342ec01fadb520572666127cb5564e1050.tar.gz
gitea-384c2b342ec01fadb520572666127cb5564e1050.zip
Move pull request api convert to convert package (#9664)
* Move pull request api convert to convert package * Rename ToPullRequest to ToAPIPullRequest
Diffstat (limited to 'modules/convert/main_test.go')
-rw-r--r--modules/convert/main_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/convert/main_test.go b/modules/convert/main_test.go
new file mode 100644
index 0000000000..8720ff0427
--- /dev/null
+++ b/modules/convert/main_test.go
@@ -0,0 +1,16 @@
+// Copyright 2020 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 convert
+
+import (
+ "path/filepath"
+ "testing"
+
+ "code.gitea.io/gitea/models"
+)
+
+func TestMain(m *testing.M) {
+ models.MainTest(m, filepath.Join("..", ".."))
+}