mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Integration test framework (#1290)
* Integration test framework * udpate drone sign * Formatting fixes and move router.go to routers/ * update sign for drone
This commit is contained in:
		
							
								
								
									
										23
									
								
								models/test_fixtures.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								models/test_fixtures.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
			
		||||
// 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()
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user