Skip to content

Instantly share code, notes, and snippets.

@tonini
Last active December 17, 2015 01:39
Show Gist options
  • Select an option

  • Save tonini/5530304 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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