Example #1
0
 public function testMultipleTransformersCanBeApplied()
 {
     $html = T::fetch($this->p, array('title' => T::all(T::append(' - Boo'), T::setAttr('class', 'foo'))));
     $this->assertContains('Example Title - Boo', $html);
     $this->assertContains('class="foo"', $html);
 }