@ -0,0 +1,17 @@ | |||||
package test | |||||
import ( | |||||
"net/http" | |||||
"testing" | |||||
) | |||||
func TestMain(t *testing.T) { | |||||
r, err := http.Get("http://localhost:3000/") | |||||
if err != nil { | |||||
t.Fatal(err) | |||||
} | |||||
defer r.Body.Close() | |||||
if r.StatusCode != http.StatusOK { | |||||
t.Error(r.StatusCode) | |||||
} | |||||
} |
@ -1,13 +0,0 @@ | |||||
#!/usr/bin/env python | |||||
# coding: utf-8 | |||||
# | |||||
# | |||||
import requests | |||||
HOST = 'http://localhost:3000' | |||||
def test_index_get(): | |||||
r = requests.get(HOST + '/') | |||||
assert r.status_code == 200 | |||||