mirror of
https://github.com/beego/bee.git
synced 2024-11-22 15:10:54 +00:00
fix #312
This commit is contained in:
parent
a3c1d42dab
commit
f7001294a9
6
new.go
6
new.go
@ -171,13 +171,13 @@ func init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// TestMain is a sample to run an endpoint test
|
// TestBeego is a sample to run an endpoint test
|
||||||
func TestMain(t *testing.T) {
|
func TestBeego(t *testing.T) {
|
||||||
r, _ := http.NewRequest("GET", "/", nil)
|
r, _ := http.NewRequest("GET", "/", nil)
|
||||||
w := httptest.NewRecorder()
|
w := httptest.NewRecorder()
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
||||||
|
|
||||||
beego.Trace("testing", "TestMain", "Code[%d]\n%s", w.Code, w.Body.String())
|
beego.Trace("testing", "TestBeego", "Code[%d]\n%s", w.Code, w.Body.String())
|
||||||
|
|
||||||
Convey("Subject: Test Station Endpoint\n", t, func() {
|
Convey("Subject: Test Station Endpoint\n", t, func() {
|
||||||
Convey("Status Code Should Be 200", func() {
|
Convey("Status Code Should Be 200", func() {
|
||||||
|
Loading…
Reference in New Issue
Block a user