1import ./make-test-python.nix {
2 name = "neo4j";
3
4 nodes = {
5 master =
6 { ... }:
7
8 {
9 services.neo4j.enable = true;
10 };
11 };
12
13 testScript = ''
14 start_all()
15
16 master.wait_for_unit("neo4j")
17 master.wait_for_open_port(7474)
18 master.succeed("curl -f http://localhost:7474/")
19 '';
20}