diff options
author | Lauris BH <lauris@nix.lv> | 2017-07-26 10:27:30 +0300 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-07-26 15:27:30 +0800 |
commit | 1d032f5220e323e14867cfec0b7b06945a47ee06 (patch) | |
tree | e0ea0c38b316b326d79c08f41ff3e0ba40ce69e9 /models/unit_tests.go | |
parent | 41cc110e62d9b3470c4a85cb367052a9c1e1251b (diff) | |
download | gitea-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.go | 18 |
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() |