/**
  * Should simply give underlying product SKU.
  */
 public function testPassesID()
 {
     $id = $this->generator()->anyInteger();
     $this->mockModelAttribute('id', $id);
     $this->assertSame($id, $this->productPresenter->id());
 }