Esempio n. 1
0
 function testTermPath()
 {
     $term_id = $this->factory->term->create();
     $term = new TimberTerm($term_id);
     $this->assertFalse(strstr($term->path(), 'http://'));
     $this->assertFalse(strstr($term->get_path(), 'http://'));
 }
Esempio n. 2
0
 function testTimberPostOnCategoryPage()
 {
     $post_id = $this->factory->post->create();
     $category_id = $this->factory->term->create(array('taxonomy' => 'category', 'name' => 'News'));
     $cat = new TimberTerm($category_id);
     $this->go_to($cat->path());
     $term = new TimberTerm();
     $this->assertEquals($category_id, $term->ID);
     $post = new TimberPost();
     $this->assertEquals(0, $post->ID);
 }
Esempio n. 3
0
 public function path()
 {
     return $this->term->path();
 }