depot/third_party/nixpkgs/nixos/tests/mopidy.nix

17 lines
278 B
Nix

import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "mopidy";
nodes.machine =
{ ... }:
{
services.mopidy.enable = true;
};
testScript = ''
machine.wait_for_unit("mopidy")
machine.wait_for_open_port(6680)
'';
}
)