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