summaryrefslogtreecommitdiffstats
path: root/integrations/signup_test.go
diff options
context:
space:
mode:
authorEthan Koenig <etk39@cornell.edu>2017-07-07 15:36:47 -0400
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2017-07-07 21:36:47 +0200
commitf1adaef45849fc260b07be39a39b9c1ee5146923 (patch)
treebc33151ef4021ae14adf2e6cfc694b9e4729cef8 /integrations/signup_test.go
parent5651cc7413640f12a9eb8dee64d332ea9597afce (diff)
downloadgitea-f1adaef45849fc260b07be39a39b9c1ee5146923.tar.gz
gitea-f1adaef45849fc260b07be39a39b9c1ee5146923.zip
Less verbose integration tests (#2123)
* Helper functions for intergration test boilerplate
Diffstat (limited to 'integrations/signup_test.go')
-rw-r--r--integrations/signup_test.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/integrations/signup_test.go b/integrations/signup_test.go
index bc32adb31d..325c906326 100644
--- a/integrations/signup_test.go
+++ b/integrations/signup_test.go
@@ -9,8 +9,6 @@ import (
"testing"
"code.gitea.io/gitea/modules/setting"
-
- "github.com/stretchr/testify/assert"
)
func TestSignup(t *testing.T) {
@@ -24,11 +22,9 @@ func TestSignup(t *testing.T) {
"password": "examplePassword",
"retype": "examplePassword",
})
- resp := MakeRequest(req)
- assert.EqualValues(t, http.StatusFound, resp.HeaderCode)
+ MakeRequest(t, req, http.StatusFound)
// should be able to view new user's page
req = NewRequest(t, "GET", "/exampleUser")
- resp = MakeRequest(req)
- assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+ MakeRequest(t, req, http.StatusOK)
}