1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Tests for zero decimals

This commit is contained in:
David Bomba 2021-12-21 20:30:44 +11:00
parent 995b16d7e3
commit 0a8f44b284

View File

@ -37,5 +37,22 @@ class ZeroDecimalTest extends TestCase
}
public function testCurrencyMiss()
{
$this->assertFalse(in_array("USD", $this->currencies));
}
public function testCurrencyNotexist()
{
$this->assertFalse(in_array("USDddd", $this->currencies));
}
}