Unverified Commit 4aee21a5 authored by Piotr Kwiecinski's avatar Piotr Kwiecinski
Browse files

nixosTests.mailhog: migrate to runTest

Part of #386873
parent af299f3b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -766,7 +766,7 @@ in
  magic-wormhole-mailbox-server = runTest ./magic-wormhole-mailbox-server.nix;
  magnetico = handleTest ./magnetico.nix { };
  mailcatcher = runTest ./mailcatcher.nix;
  mailhog = handleTest ./mailhog.nix { };
  mailhog = runTest ./mailhog.nix;
  mailpit = runTest ./mailpit.nix;
  mailman = handleTest ./mailman.nix { };
  man = handleTest ./man.nix { };
+25 −27
Original line number Diff line number Diff line
import ./make-test-python.nix (
{ lib, ... }:
{
  name = "mailhog";
@@ -27,4 +26,3 @@ import ./make-test-python.nix (
    assert all(msg in res for msg in ["this is the body of the email", "sender@example.com", "root@example.com"])
  '';
}
)