pub fn assert_contains(text: &str, substring: &str)
Assert that response body contains text
use reinhardt_testkit::assertions::assert_contains; let text = "Hello, World!"; assert_contains(text, "World");