Carew\Tests\Twig\GlobalsTest::testFromArray PHP Method

testFromArray() public method

public testFromArray ( )
    public function testFromArray()
    {
        $globals = new Globals();
        $globals->fromArray(array('relativeRoot' => '../', 'foo' => 'bar'));
        $this->assertSame($globals->relativeRoot, '../');
        $this->assertSame($globals->extra['foo'], 'bar');
    }
GlobalsTest