PhlyTest\Mustache\MustacheTest::testWithDotNotationIfSubpropertyDoesNotExistEmptyStringIsRendered PHP Method

testWithDotNotationIfSubpropertyDoesNotExistEmptyStringIsRendered() public method

    public function testWithDotNotationIfSubpropertyDoesNotExistEmptyStringIsRendered()
    {
        $view = array('foo' => 'bar');
        $test = $this->mustache->render('dot-notation', $view);
        $this->assertEquals('', trim($test));
    }
MustacheTest