mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Decouple unit test, remove intermediate unittestbridge package (#17662)
				
					
				
			Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		| @@ -9,7 +9,7 @@ import ( | ||||
| 	"testing" | ||||
|  | ||||
| 	"code.gitea.io/gitea/models" | ||||
| 	"code.gitea.io/gitea/models/db" | ||||
| 	"code.gitea.io/gitea/models/unittest" | ||||
| ) | ||||
|  | ||||
| func TestEmptyRepo(t *testing.T) { | ||||
| @@ -20,8 +20,8 @@ func TestEmptyRepo(t *testing.T) { | ||||
| 		"commit/1ae57b34ccf7e18373", | ||||
| 		"graph", | ||||
| 	} | ||||
| 	emptyRepo := db.AssertExistsAndLoadBean(t, &models.Repository{}, db.Cond("is_empty = ?", true)).(*models.Repository) | ||||
| 	owner := db.AssertExistsAndLoadBean(t, &models.User{ID: emptyRepo.OwnerID}).(*models.User) | ||||
| 	emptyRepo := unittest.AssertExistsAndLoadBean(t, &models.Repository{}, unittest.Cond("is_empty = ?", true)).(*models.Repository) | ||||
| 	owner := unittest.AssertExistsAndLoadBean(t, &models.User{ID: emptyRepo.OwnerID}).(*models.User) | ||||
| 	for _, subpath := range subpaths { | ||||
| 		req := NewRequestf(t, "GET", "/%s/%s/%s", owner.Name, emptyRepo.Name, subpath) | ||||
| 		MakeRequest(t, req, http.StatusNotFound) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user