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').
18 lines
728 B
Nix
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; };
|
|
}
|