JoliTypo\Tests\EnglishTest::testReadMeExemple PHP Method

testReadMeExemple() public method

public testReadMeExemple ( )
    public function testReadMeExemple()
    {
        $before = <<<HTML
<p>"Tell me Mr. Anderson... what good is a phone call... if you're unable to speak?" -- Agent Smith, <em>Matrix</em>.</p>
HTML;
        $after = <<<HTML
<p>&ldquo;Tell me Mr. Ander&shy;son&hellip; what good is a phone call&hellip; if you&rsquo;re unable to speak?&rdquo;&mdash;Agent Smith, <em>Matrix</em>.</p>
HTML;
        $fixer = new Fixer($this->en_fixers);
        $this->assertInstanceOf('JoliTypo\\Fixer', $fixer);
        $this->assertEquals($after, $fixer->fix($before));
    }