summaryrefslogtreecommitdiffstats
path: root/models/unit_tests.go
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2017-07-26 10:27:30 +0300
committerLunny Xiao <xiaolunwen@gmail.com>2017-07-26 15:27:30 +0800
commit1d032f5220e323e14867cfec0b7b06945a47ee06 (patch)
treee0ea0c38b316b326d79c08f41ff3e0ba40ce69e9 /models/unit_tests.go
parent41cc110e62d9b3470c4a85cb367052a9c1e1251b (diff)
downloadgitea-1d032f5220e323e14867cfec0b7b06945a47ee06.tar.gz
gitea-1d032f5220e323e14867cfec0b7b06945a47ee06.zip
Fix compiling without sqlite and gcc (#2177)
Diffstat (limited to 'models/unit_tests.go')
-rw-r--r--models/unit_tests.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/models/unit_tests.go b/models/unit_tests.go
index 16eb09968c..774fb883c6 100644
--- a/models/unit_tests.go
+++ b/models/unit_tests.go
@@ -7,31 +7,13 @@ package models
import (
"testing"
- "github.com/go-xorm/core"
"github.com/go-xorm/xorm"
- _ "github.com/mattn/go-sqlite3" // for the test engine
"github.com/stretchr/testify/assert"
- "gopkg.in/testfixtures.v2"
)
// NonexistentID an ID that will never exist
const NonexistentID = 9223372036854775807
-// CreateTestEngine create an xorm engine for testing
-func CreateTestEngine() error {
- var err error
- x, err = xorm.NewEngine("sqlite3", "file::memory:?cache=shared")
- if err != nil {
- return err
- }
- x.SetMapper(core.GonicMapper{})
- if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
- return err
- }
-
- return InitFixtures(&testfixtures.SQLite{}, "fixtures/")
-}
-
// PrepareTestDatabase load test fixtures into test database
func PrepareTestDatabase() error {
return LoadFixtures()