/**
  * It should be possible to set a custom separator to use between breadcrumbs
  *
  */
 public function testShouldBeAbleToSetSeparator()
 {
     $old = $this->_helper->getSeparator();
     $this->_helper->setSeparator('foo');
     $expected = file_get_contents($this->_files . '/breadcrumbs_sep.html');
     $this->assertEquals($expected, $this->_helper->toString());
     $this->_helper->setSeparator($old);
 }