summaryrefslogtreecommitdiff
path: root/tests/SelfDirTest.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-27 22:10:28 +0300
committerAndrew Dolgov <[email protected]>2023-10-27 22:10:28 +0300
commit925256c81f3be3678ced527fe32f5ae59418ad00 (patch)
tree51f25e831ab0fb758c29f1b638592a553653edd0 /tests/SelfDirTest.php
parent5a7c5b8249e880952e011dd4e91726c0409c92de (diff)
unify test class naming
Diffstat (limited to 'tests/SelfDirTest.php')
-rw-r--r--tests/SelfDirTest.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/SelfDirTest.php b/tests/SelfDirTest.php
deleted file mode 100644
index 5b7396a66..000000000
--- a/tests/SelfDirTest.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-
-use PHPUnit\Framework\TestCase;
-
-final class ConfigTest extends TestCase {
- public function test_get_self_dir(): void {
- $this->assertEquals(
- dirname(__DIR__), # we're in (app)/tests/
- Config::get_self_dir()
- );
- }
-}