Browse Source

Test for redirect

Alex Myasoedov 6 years ago
parent
commit
f6dc3a04e3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app_test.go

+ 2 - 2
app_test.go

@@ -34,10 +34,10 @@ func Test(t *testing.T) {
 	g.Describe("App api", func() {
 		var cookie string
 
-		g.It("Should return 200 on / ", func() {
+		g.It("Should return 302 on / to redirect to file name ", func() {
 			w := client("GET", "/", "")
 
-			g.Assert(w.Code).Equal(200)
+			g.Assert(w.Code).Equal(302)
 			cookie = w.HeaderMap.Get(Cookie)
 		})