htmlgen\test\HtmlTest::test_html_zen_element_with_id PHP Method

test_html_zen_element_with_id() public method

    public function test_html_zen_element_with_id()
    {
        $expected = '<div id="main"></div>';
        $actual = (string) html('div#main');
        $this->assertSame($expected, $actual);
    }