25bef2d8f9
The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
25 lines
450 B
Nix
25 lines
450 B
Nix
# This test runs haka and probes it with hakactl
|
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
|
name = "haka";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ tvestelind ];
|
|
};
|
|
|
|
nodes = {
|
|
haka =
|
|
{ ... }:
|
|
{
|
|
services.haka.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
|
|
haka.wait_for_unit("haka.service")
|
|
haka.succeed("hakactl status")
|
|
haka.succeed("hakactl stop")
|
|
'';
|
|
})
|