summaryrefslogtreecommitdiff
path: root/tests/units/Core/ToolTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/Core/ToolTest.php')
-rw-r--r--tests/units/Core/ToolTest.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/units/Core/ToolTest.php b/tests/units/Core/ToolTest.php
deleted file mode 100644
index 2422d73c..00000000
--- a/tests/units/Core/ToolTest.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-require_once __DIR__.'/../Base.php';
-
-use Kanboard\Core\Tool;
-
-class ToolTest extends Base
-{
- public function testMailboxHash()
- {
- $this->assertEquals('test1', Tool::getMailboxHash('a+test1@localhost'));
- $this->assertEquals('', Tool::getMailboxHash('test1@localhost'));
- $this->assertEquals('', Tool::getMailboxHash('test1'));
- }
-}