Exemplo n.º 1
0
 public function testDoesNotConsumeBlocks()
 {
     $input = new Input('h1 {}');
     $result = $this->parser->parse($input)->data;
     $this->assertEquals('Element(h1)', $result->__toString());
     $this->assertEquals(' {}', $input->get());
 }