Exemplo n.º 1
0
 /**
  * 
  * Test -- Is this a block-level plugin?
  * 
  */
 public function testIsBlock()
 {
     if (!is_bool($this->_is_block)) {
         $this->todo('need to set $_is_block test property');
     }
     $actual = $this->_plugin->isBlock();
     $expect = $this->_is_block;
     $this->assertSame($actual, $expect);
 }