Example #1
0
 public function testRemoveExclude()
 {
     $this->field->addExcludes(array('e1', 'e2'));
     $this->field->removeExclude('e1');
     $this->assertEquals(array('e2'), $this->field->getExcludes());
 }