mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Use httptest in integration tests (#3080)
This commit is contained in:
		| @@ -6,6 +6,7 @@ package integrations | ||||
|  | ||||
| import ( | ||||
| 	"net/http" | ||||
| 	"net/http/httptest" | ||||
| 	"path" | ||||
| 	"strings" | ||||
| 	"testing" | ||||
| @@ -13,7 +14,7 @@ import ( | ||||
| 	"github.com/stretchr/testify/assert" | ||||
| ) | ||||
|  | ||||
| func testPullCreate(t *testing.T, session *TestSession, user, repo, branch string) *TestResponse { | ||||
| func testPullCreate(t *testing.T, session *TestSession, user, repo, branch string) *httptest.ResponseRecorder { | ||||
| 	req := NewRequest(t, "GET", path.Join(user, repo)) | ||||
| 	resp := session.MakeRequest(t, req, http.StatusOK) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user