Do not cache app settings in session

This commit is contained in:
Frederic Guillot
2016-01-14 21:42:28 -05:00
parent a8f404421f
commit 9e24bb2ef0
8 changed files with 196 additions and 118 deletions

View File

@@ -6,6 +6,13 @@ use Kanboard\Model\Currency;
class CurrencyTest extends Base
{
public function testGetCurrencies()
{
$currencyModel = new Currency($this->container);
$currencies = $currencyModel->getCurrencies();
$this->assertArrayHasKey('EUR', $currencies);
}
public function testGetAll()
{
$currencyModel = new Currency($this->container);