vscode-extensions.sas.sas-lsp: 1.12.0 -> 1.13.0 (#367941)
[NixPkgs.git] / nixos / tests / web-apps / phylactery.nix
blob492d50d3d2d1f602960c389365038eed5edc8887
1 import ../make-test-python.nix (
2   { pkgs, lib, ... }:
3   {
4     name = "phylactery";
6     nodes.machine =
7       { ... }:
8       {
9         services.phylactery = rec {
10           enable = true;
11           port = 8080;
12           library = "/tmp";
13         };
14       };
16     testScript = ''
17       start_all()
18       machine.wait_for_unit('phylactery')
19       machine.wait_for_open_port(8080)
20       machine.wait_until_succeeds('curl localhost:8080')
21     '';
23     meta.maintainers = with lib.maintainers; [ McSinyx ];
24   }