/** * Test html */ public function testHtml() { $this->markTestSkipped('Do not use Note model outside of Minutes test'); $item = new Note_Models_Note(array('db' => $this->sharedFixture)); $item->comments = '<b>HELLO</b>'; $this->assertEquals(array(), $item->getError()); $this->assertEquals('<b>HELLO</b>', $item->comments); }
/** * Test html */ public function testHtml() { $item = new Note_Models_Note(array('db' => $this->sharedFixture)); $item->comments = '<b>HELLO</b>'; $this->assertEquals(array(), $item->getError()); $this->assertEquals('<b>HELLO</b>', $item->comments); }