nixos/bind: port test to python
This commit is contained in:
parent
db54622145
commit
44e6c84ea1
@ -1,4 +1,4 @@
|
|||||||
import ./make-test.nix {
|
import ./make-test-python.nix {
|
||||||
name = "bind";
|
name = "bind";
|
||||||
|
|
||||||
machine = { pkgs, lib, ... }: {
|
machine = { pkgs, lib, ... }: {
|
||||||
@ -20,8 +20,8 @@ import ./make-test.nix {
|
|||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
$machine->waitForUnit('bind.service');
|
machine.wait_for_unit("bind.service")
|
||||||
$machine->waitForOpenPort(53);
|
machine.wait_for_open_port(53)
|
||||||
$machine->succeed('host 192.168.0.1 127.0.0.1 | grep -qF ns.example.org');
|
machine.succeed("host 192.168.0.1 127.0.0.1 | grep -qF ns.example.org")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user