Example #1
0
 /**
  * Tests titleSeparator
  *
  * @author Nikolaos Dimopoulos <*****@*****.**>
  * @since  2012-09-05
  */
 public function testSetTitleSeparator()
 {
     $this->specify("titleSeparator returns incorrect result", function () {
         PhTTag::resetInput();
         PhTTag::setTitleSeparator('-');
         $expected = "-";
         $actual = PhTTag::getTitleSeparator();
         expect($actual)->equals($expected);
     });
 }