/**
  * Renders the google map stylesheets.
  *
  * @param \Ivory\GoogleMap\Map $map The map.
  *
  * @return string The html output.
  */
 public function renderStylesheets(Map $map)
 {
     return $this->templateHelper->renderStylesheets($map);
 }
 public function testRenderStylesheets()
 {
     $map = $this->getMock('Ivory\\GoogleMap\\Map');
     $this->mapHelperMock->expects($this->once())->method('renderStylesheets')->with($map)->will($this->returnValue('foo'));
     $this->assertSame('foo', $this->templateHelper->renderStylesheets($map));
 }