Gc\Media\InfoTest::testRender PHP Method

testRender() public method

Test
public testRender ( ) : void
return void
    public function testRender()
    {
        $filePath = __DIR__ . '/_files/information.info';
        $this->object->fromFile($filePath);
        $assertString = '<dl><dt>Author</dt><dd>Pierre Rambaud</dd><dt>Date</dt>' . '<dd>2012</dd><dt>Version</dt><dd>0.1</dd><dt>Description</dt>' . '<dd>Information test</dd><dt>Database compatibility</dt><dd>pgsql</dd>' . '<dt>Website url</dt><dd><a href="http://pierrerambaud.com">website</a></dd></dl>';
        $this->assertEquals($assertString, $this->object->render());
    }