summaryrefslogtreecommitdiffstats
path: root/nixos/tests/mopidy.nix
blob: 305a12f5aa2e56053a27b5fc0a6cfd4749dd81c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, ... }:
{
  name = "mopidy";

  nodes.machine =
    { ... }:
    {
      services.mopidy.enable = true;
    };

  testScript = ''
    machine.wait_for_unit("mopidy")
    machine.wait_for_open_port(6680)
  '';
}