Example #1
0
 public function testRemoveTag()
 {
     $this->query->addTags(array('t1', 't2'));
     $this->query->removeTag('t1');
     $this->assertEquals(array('t2'), $this->query->getTags());
 }