Skip to content

Instantly share code, notes, and snippets.

@mercuryseries
Created August 7, 2016 03:43
Show Gist options
  • Save mercuryseries/59373e1d5a6aea928c9b10c14aaaa29f to your computer and use it in GitHub Desktop.
Save mercuryseries/59373e1d5a6aea928c9b10c14aaaa29f to your computer and use it in GitHub Desktop.
Some test method helpers for the Laravel Framework
<?php
trait InteractsWithPages
{
/**
* Assert that the current route matches the given one.
*
* @param string $route_name
* @return $this
*/
public function seeCurrentRouteIs($route_name)
{
return $this->seePageIs(route($route_name));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment