1 import ./make-test-python.nix ({ pkgs, ... }: {
3 meta.maintainers = [ pkgs.lib.maintainers.aanderse ];
5 nodes.machine = { ... }: {
6 services.limesurvey = {
9 hostName = "example.local";
10 adminAddr = "root@example.local";
14 # limesurvey won't work without a dot in the hostname
15 networking.hosts."127.0.0.1" = [ "example.local" ];
21 machine.wait_for_unit("phpfpm-limesurvey.service")
22 assert "The following surveys are available" in machine.succeed(
23 "curl -f http://example.local/"