JamesMoss\Flywheel\ConfigTest::testSettingQueryClass PHP Method

testSettingQueryClass() public method

    public function testSettingQueryClass()
    {
        $path = __DIR__ . '/fixtures/datastore/writable';
        $config = new Config($path . '/', array('query_class' => '\\stdClass'));
        $this->assertSame('\\stdClass', $config->getOption('query_class'));
    }