You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
613 B
23 lines
613 B
// 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 models
|
|
|
|
import (
|
|
"gopkg.in/testfixtures.v2"
|
|
)
|
|
|
|
var fixtures *testfixtures.Context
|
|
|
|
// InitFixtures initialize test fixtures for a test database
|
|
func InitFixtures(helper testfixtures.Helper, dir string) (err error) {
|
|
testfixtures.SkipDatabaseNameCheck(true)
|
|
fixtures, err = testfixtures.NewFolder(x.DB().DB, helper, dir)
|
|
return err
|
|
}
|
|
|
|
// LoadFixtures load fixtures for a test database
|
|
func LoadFixtures() error {
|
|
return fixtures.Load()
|
|
}
|
|
|