/**
  * Should give the underlying product slug.
  */
 public function testPassesSlug()
 {
     $slug = $this->generator()->anySlug();
     $this->mockModelAttribute('slug', $slug);
     $this->assertSame($slug, $this->productPresenter->slug());
 }