Beispiel #1
0
// HTTPBodyContains asserts that a specified handler returns a
// body that contains a string.
//
//  assert.HTTPBodyContains(t, myHandler, "www.google.com", nil, "I'm Feeling Lucky")
//
// Returns whether the assertion was successful (true) or not (false).
func HTTPBodyContains(t TestingT, handler http.HandlerFunc, method string, url string, values url.Values, str interface{}) {
	if !assert.HTTPBodyContains(t, handler, method, url, values, str) {
		t.FailNow()
	}
}
func TestHello(t *testing.T) {
	assert.HTTPBodyContains(t, helloHandler, "GET", "/", nil, "Hello, World")
}