1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00
nixpkgs/nixos/tests/mopidy.nix

16 lines
218 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
{
name = "mopidy";
2024-11-14 23:40:14 +01:00
nodes.machine =
{ ... }:
{
services.mopidy.enable = true;
};
2024-11-14 23:40:14 +01:00
testScript = ''
machine.wait_for_unit("mopidy")
machine.wait_for_open_port(6680)
'';
}