Ejemplo n.º 1
0
 public function test_category_name_is_displayed()
 {
     $category = Category::first();
     $route = route('category', [$category->slug, $category->id]);
     $crawler = $this->client->request('GET', $route);
     $this->assertCount(1, $crawler->filter('h1:contains("' . $category->name . '")'));
 }