Example #1
0
 public function test_render_standalone_with_object()
 {
     $controller = new Controller(new MockMapper());
     $controller->test = new Property('test', array());
     $controller->setObject(array('id' => 'test_id', 'test' => 'value'));
     $this->assertEquals("<div about=\"test_id\"><div>value</div>\n</div>\n", $controller->render());
 }