JoliTypo\Tests\EnglishTest::testHtmlHeart PHP Method

testHtmlHeart() public method

public testHtmlHeart ( )
    public function testHtmlHeart()
    {
        $fixed = <<<HTML
<p>We &lt;3&nbsp;web.</p>
HTML;
        $to_fix = <<<HTML
<p>We &lt;3 web.</p>
HTML;
        $fixer = new Fixer($this->en_fixers);
        $fixer->setLocale('en');
        $this->assertInstanceOf('JoliTypo\\Fixer', $fixer);
        $this->assertEquals($fixed, $fixer->fix($to_fix));
    }