Exemplo n.º 1
0
 public function testGetLink()
 {
     $c = new ae_CategoryModel();
     $c->setId(4);
     $c->setPermalink('a-category');
     if (ae_Settings::isModRewriteEnabled()) {
         $this->assertEquals($c->getLink('http://example.com/'), 'http://example.com/' . PERMALINK_BASE_CATEGORY . 'a-category');
     } else {
         $this->assertEquals($c->getLink('http://example.com/'), 'http://example.com/?' . PERMALINK_GET_CATEGORY . '=4');
     }
 }