mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 18:29:15 +00:00
11 lines
199 B
Go
11 lines
199 B
Go
|
|
package actions
|
||
|
|
|
||
|
|
import "net/http"
|
||
|
|
|
||
|
|
func (as *ActionSuite) Test_HomeHandler() {
|
||
|
|
res := as.HTML("/").Get()
|
||
|
|
|
||
|
|
as.Equal(http.StatusOK, res.Code)
|
||
|
|
as.Contains(res.Body.String(), "Welcome to Buffalo")
|
||
|
|
}
|