Add settings field to control project columns (pull-request #244)

This commit is contained in:
Frédéric Guillot
2014-09-12 17:35:48 +02:00
parent c3a0cf4343
commit 2e6a8d435f
22 changed files with 144 additions and 19 deletions

View File

@@ -0,0 +1,32 @@
<?php
require_once __DIR__.'/Base.php';
use Model\Config;
class ConfigTest extends Base
{
public function testDefaultValues()
{
$c = new Config($this->registry);
$this->assertEquals('en_US', $c->get('language'));
$this->assertEquals('UTC', $c->get('timezone'));
$this->assertEmpty($c->get('webhooks_url_task_modification'));
$this->assertEmpty($c->get('webhooks_url_task_creation'));
$this->assertEmpty($c->get('default_columns'));
$this->assertNotEmpty($c->get('webhooks_token'));
$this->assertNotEmpty($c->get('api_token'));
}
public function testGet()
{
$c = new Config($this->registry);
$this->assertEquals('', $c->get('default_columns'));
$this->assertEquals('test', $c->get('default_columns', 'test'));
$this->assertEquals(0, $c->get('default_columns', 0));
}
}