nixosTests.pdns-recursor: Port tests not python

Changed files
+3 -3
nixos
+3 -3
nixos/tests/pdns-recursor.nix
···
-
import ./make-test.nix ({ pkgs, ... }: {
+
import ./make-test-python.nix ({ pkgs, ... }: {
name = "powerdns";
nodes.server = { ... }: {
···
};
testScript = ''
-
$server->waitForUnit("pdns-recursor");
-
$server->waitForOpenPort("53");
+
server.wait_for_unit("pdns-recursor")
+
server.wait_for_open_port("53")
'';
})