newsbox/actions/home_test.go
Adriano Caloiaro 8ae801ae5f
Initial commit
2023-02-15 08:57:48 -08:00

10 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")
}