nixosTests.pdns-recursor: Port tests not python

gstqt5
Christian Kampka 2019-12-15 18:53:26 +01:00
parent d58814ac5a
commit d76ab647e6
No known key found for this signature in database
GPG Key ID: B88E140DB4FE1AA5
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import ./make-test.nix ({ pkgs, ... }: {
import ./make-test-python.nix ({ pkgs, ... }: {
name = "powerdns";
nodes.server = { ... }: {
@ -6,7 +6,7 @@ import ./make-test.nix ({ pkgs, ... }: {
};
testScript = ''
$server->waitForUnit("pdns-recursor");
$server->waitForOpenPort("53");
server.wait_for_unit("pdns-recursor")
server.wait_for_open_port("53")
'';
})