nixos/mailcatcher: fix test to be compatible with mailcatcher 7.x series

This commit is contained in:
Aaron Andersen 2019-03-28 11:15:20 -04:00
parent 88b32b2004
commit 417da42c02

View file

@ -21,6 +21,6 @@ import ./make-test.nix ({ lib, ... }:
$machine->waitForUnit('mailcatcher.service');
$machine->waitForOpenPort('1025');
$machine->succeed('echo "this is the body of the email" | mail -s "subject" root@example.org');
$machine->succeed('curl http://localhost:1080/messages/1.json') =~ /this is the body of the email/ or die;
$machine->succeed('curl http://localhost:1080/messages/1.source') =~ /this is the body of the email/ or die;
'';
})