1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00

Rename ResolvConfTest to UnixConfigLoaderTest

This commit is contained in:
Niklas Keller 2017-06-22 19:26:41 +02:00
parent 315e03ff54
commit d7b32251d8

View File

@ -8,7 +8,7 @@ use Amp\Dns\UnixConfigLoader;
use Amp\PHPUnit\TestCase;
use function Amp\Promise\wait;
class ResolvConfTest extends TestCase {
class UnixConfigLoaderTest extends TestCase {
public function test() {
$loader = new UnixConfigLoader(__DIR__ . "/data/resolv.conf");
@ -24,7 +24,7 @@ class ResolvConfTest extends TestCase {
$this->assertSame(3, $result->getAttempts());
}
public function testDefaultsOnConfNotFound() {
public function testNoDefaultsOnConfNotFound() {
$this->expectException(ConfigException::class);
wait((new UnixConfigLoader(__DIR__ . "/data/non-existent.conf"))->loadConfig());
}