Decouple unit test code from business code (#17623)
This commit is contained in:
		| @@ -11,16 +11,17 @@ import ( | ||||
|  | ||||
| 	"code.gitea.io/gitea/models" | ||||
| 	"code.gitea.io/gitea/models/db" | ||||
| 	"code.gitea.io/gitea/models/unittest" | ||||
|  | ||||
| 	"github.com/stretchr/testify/assert" | ||||
| ) | ||||
|  | ||||
| func TestMain(m *testing.M) { | ||||
| 	db.MainTest(m, filepath.Join("..", "..")) | ||||
| 	unittest.MainTest(m, filepath.Join("..", "..")) | ||||
| } | ||||
|  | ||||
| func TestUploadAttachment(t *testing.T) { | ||||
| 	assert.NoError(t, db.PrepareTestDatabase()) | ||||
| 	assert.NoError(t, unittest.PrepareTestDatabase()) | ||||
|  | ||||
| 	user := db.AssertExistsAndLoadBean(t, &models.User{ID: 1}).(*models.User) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 GitHub
						GitHub