nixpkgs/nixos/tests/mopidy.nix
2024-11-24 12:03:28 +01:00

18 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)
'';
}
)