Example #1
0
 public function testMultipleClassesCanBeRemovedFromAnElement()
 {
     $html = T::fetch($this->p, array('body' => T::removeClass('foo', 'bar')));
     $this->assertNotContains('class="foo bar"', $html);
     $this->assertNotContains('class="bar"', $html);
 }