newsbox/actions/home_test.go

11 lines
199 B
Go
Raw Normal View History

2023-02-15 16:56:06 +00:00
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")
}