diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-07 19:35:06 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-07 19:35:06 -0400 |
commit | 8ddd56636154e5e55892fbb5ac9a5fe186b8df1f (patch) | |
tree | ff8e8fa95f06f4dcbfee949e058a1edb1aa7ef5d /tests/units/Core/Plugin/SchemaHandlerTest.php | |
parent | 714bdb0d024c952cafd7924212b862ae31d7f1d4 (diff) |
Improve plugin loading
Diffstat (limited to 'tests/units/Core/Plugin/SchemaHandlerTest.php')
-rw-r--r-- | tests/units/Core/Plugin/SchemaHandlerTest.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/units/Core/Plugin/SchemaHandlerTest.php b/tests/units/Core/Plugin/SchemaHandlerTest.php new file mode 100644 index 00000000..98a00e0b --- /dev/null +++ b/tests/units/Core/Plugin/SchemaHandlerTest.php @@ -0,0 +1,23 @@ +<?php + +require_once __DIR__.'/../../Base.php'; + +use Kanboard\Core\Plugin\SchemaHandler; + +class SchemaHandlerTest extends Base +{ + public function testGetSchemaVersion() + { + $p = new SchemaHandler($this->container); + $this->assertEquals(0, $p->getSchemaVersion('not_found')); + + $this->assertTrue($p->setSchemaVersion('plugin1', 1)); + $this->assertEquals(1, $p->getSchemaVersion('plugin1')); + + $this->assertTrue($p->setSchemaVersion('plugin2', 33)); + $this->assertEquals(33, $p->getSchemaVersion('plugin2')); + + $this->assertTrue($p->setSchemaVersion('plugin1', 2)); + $this->assertEquals(2, $p->getSchemaVersion('plugin1')); + } +} |