Esempio n. 1
0
 function testTermDescription()
 {
     $desc = 'An honest football team';
     $term_id = $this->factory->term->create(array('name' => 'New England Patriots', 'description' => $desc));
     $term = new TimberTerm($term_id, 'post_tag');
     $this->assertEquals($desc, $term->description());
 }