summary refs log tree commit diff
path: root/nixos/tests/roundcube.nix
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-11-22 17:01:29 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2019-11-22 17:13:41 +0100
commite292be76fc79dfe1ff1e2680a00c33864caf6a9e (patch)
tree9e8b713bcbe331fe5a29ff662a6536ca4a2ad7bb /nixos/tests/roundcube.nix
parent2d67023bd845163ef2fc13e20818371ea3e5469f (diff)
downloadnixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.tar
nixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.tar.gz
nixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.tar.bz2
nixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.tar.lz
nixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.tar.xz
nixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.tar.zst
nixpkgs-e292be76fc79dfe1ff1e2680a00c33864caf6a9e.zip
roundcube: 1.4.0 -> 1.4.1
https://github.com/roundcube/roundcubemail/releases/tag/1.4.1

Also fixed the test which got broken during #71407, most likely due to a
merge issue.
Diffstat (limited to 'nixos/tests/roundcube.nix')
-rw-r--r--nixos/tests/roundcube.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/nixos/tests/roundcube.nix b/nixos/tests/roundcube.nix
index 4dccb411ff4..1897b53e283 100644
--- a/nixos/tests/roundcube.nix
+++ b/nixos/tests/roundcube.nix
@@ -21,11 +21,10 @@ import ./make-test-python.nix ({ pkgs, ...} : {
   };
 
   testScript = ''
-    $roundcube->start;
-    $roundcube->waitForUnit("postgresql.service");
-    $roundcube->waitForUnit("roundcube-setup.service");
-    $roundcube->waitForUnit("phpfpm-roundcube.service");
-    $roundcube->waitForUnit("nginx.service");
-    $roundcube->succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'");
+    roundcube.start
+    roundcube.wait_for_unit("postgresql.service")
+    roundcube.wait_for_unit("phpfpm-roundcube.service")
+    roundcube.wait_for_unit("nginx.service")
+    roundcube.succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'")
   '';
 })