nixosTests.nginx-redirectcode: migrate to runTest

This commit is contained in:
Piotr Kwiecinski 2025-03-30 03:31:10 +02:00
parent c0d90aca81
commit 7a830b19d7
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 24 additions and 26 deletions

View file

@ -809,7 +809,7 @@ in {
nginx-njs = handleTest ./nginx-njs.nix {};
nginx-proxyprotocol = runTest ./nginx-proxyprotocol/default.nix;
nginx-pubhtml = runTest ./nginx-pubhtml.nix;
nginx-redirectcode = handleTest ./nginx-redirectcode.nix {};
nginx-redirectcode = runTest ./nginx-redirectcode.nix;
nginx-sso = handleTest ./nginx-sso.nix {};
nginx-status-page = handleTest ./nginx-status-page.nix {};
nginx-tmpdir = handleTest ./nginx-tmpdir.nix {};

View file

@ -1,5 +1,4 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }:
{ lib, ... }:
{
name = "nginx-redirectcode";
meta.maintainers = with lib.maintainers; [ misterio77 ];
@ -27,4 +26,3 @@ import ./make-test-python.nix (
webserver.succeed("curl -si http://localhost | grep '^HTTP/[0-9.]\+ 308 Permanent Redirect'")
'';
}
)