Phalcon\Test\Config\LoaderTest::testLoadPhp5FileConfig PHP Method

testLoadPhp5FileConfig() public method

    public function testLoadPhp5FileConfig()
    {
        $file = INCUBATOR_FIXTURES . 'Config/config.php5';
        $config = ConfigLoader::load($file);
        $this->assertTrue(is_object($config));
        $this->assertInstanceOf('Phalcon\\Config\\Adapter\\Php', $config);
        $this->assertInstanceOf('Phalcon\\Config', $config);
        $this->assertEquals('bar', $config->phalcon->foo);
    }