Files
arr-init/tests/default.nix
Simon Gardling f766e5f71e test: add naming configuration test
Exercises the naming option which was previously untested.
Verifies fields are applied to Sonarr via config/naming API
and validates idempotency (second run reports 'already correct').
2026-04-16 16:34:28 -04:00

18 lines
728 B
Nix

{
pkgs,
lib,
self,
}:
{
integration = import ./integration.nix { inherit pkgs lib self; };
partial-config = import ./partial-config.nix { inherit pkgs lib self; };
multiple-clients = import ./multiple-clients.nix { inherit pkgs lib self; };
bazarr = import ./bazarr.nix { inherit pkgs lib self; };
error-handling = import ./error-handling.nix { inherit pkgs lib self; };
edge-cases = import ./edge-cases.nix { inherit pkgs lib self; };
health-checks = import ./health-checks.nix { inherit pkgs lib self; };
delayed-start = import ./delayed-start.nix { inherit pkgs lib self; };
jellyseerr = import ./jellyseerr.nix { inherit pkgs lib self; };
naming = import ./naming.nix { inherit pkgs lib self; };
}