summaryrefslogtreecommitdiff
path: root/tests/SelfDirTest.php
blob: 5b7396a66a7408b57b32739e18e7ffd1dd992d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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()
		);
	}
}