summaryrefslogtreecommitdiff
path: root/tests/units/UserHelperTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/UserHelperTest.php')
-rw-r--r--tests/units/UserHelperTest.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/units/UserHelperTest.php b/tests/units/UserHelperTest.php
deleted file mode 100644
index 9129edd9..00000000
--- a/tests/units/UserHelperTest.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-require_once __DIR__.'/Base.php';
-
-use Helper\User;
-
-class UserHelperTest extends Base
-{
- public function testInitials()
- {
- $h = new User($this->container);
-
- $this->assertEquals('CN', $h->getInitials('chuck norris'));
- $this->assertEquals('A', $h->getInitials('admin'));
- }
-}