fixing configuration and its test to match the new namespaces
This commit is contained in:
parent
b1305beb0f
commit
d14eb0efe4
@ -82,7 +82,7 @@ class configuration
|
|||||||
'dir' => 'data',
|
'dir' => 'data',
|
||||||
),
|
),
|
||||||
'model' => array(
|
'model' => array(
|
||||||
'class' => 'privatebin_data',
|
'class' => 'PrivateBin\data\data',
|
||||||
),
|
),
|
||||||
'model_options' => array(
|
'model_options' => array(
|
||||||
'dir' => 'data',
|
'dir' => 'data',
|
||||||
|
@ -128,12 +128,12 @@ class configurationTest extends PHPUnit_Framework_TestCase
|
|||||||
$options['model']['class'] = 'zerobin_data';
|
$options['model']['class'] = 'zerobin_data';
|
||||||
helper::createIniFile(CONF, $options);
|
helper::createIniFile(CONF, $options);
|
||||||
$conf = new configuration;
|
$conf = new configuration;
|
||||||
$this->assertEquals('privatebin_data', $conf->getKey('class', 'model'), 'old data class gets renamed');
|
$this->assertEquals('PrivateBin\data\data', $conf->getKey('class', 'model'), 'old data class gets renamed');
|
||||||
|
|
||||||
$options['model']['class'] = 'zerobin_db';
|
$options['model']['class'] = 'zerobin_db';
|
||||||
helper::createIniFile(CONF, $options);
|
helper::createIniFile(CONF, $options);
|
||||||
$conf = new configuration;
|
$conf = new configuration;
|
||||||
$this->assertEquals('privatebin_db', $conf->getKey('class', 'model'), 'old db class gets renamed');
|
$this->assertEquals('PrivateBin\data\db', $conf->getKey('class', 'model'), 'old db class gets renamed');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user