Skip to content

Instantly share code, notes, and snippets.

@tonini
Last active December 17, 2015 01:39
Show Gist options
  • Save tonini/5530304 to your computer and use it in GitHub Desktop.
Save tonini/5530304 to your computer and use it in GitHub Desktop.
public function assertPageNotContainsText($text)
{
$this->assertTrueWithoutExcpetion(function() use ($text) {
$this->assertSession()->pageTextNotContains($text);
});
}
@floere
Copy link

floere commented May 7, 2013

Typo alert! "Excpetion"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment