Goetas\Twital\Tests\CoreNodesTest::testNonEmptyHtmlAttributes PHP Method

testNonEmptyHtmlAttributes() public method

public testNonEmptyHtmlAttributes ( $attributeName )
    public function testNonEmptyHtmlAttributes($attributeName)
    {
        $source = '<div ' . $attributeName . '="">foo</div>';
        $compiled = $this->twital->compile($this->sourceAdapter, $source);
        $this->assertEquals($source, $compiled);
    }