python3Packages.xknx: 1.1.0 -> 1.2.0
[NixPkgs.git] / nixos / tests / soapui.nix
blobe4ce3888fd4378ad6bec7dd72a90fde398ba9e84
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "soapui";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ asbachb ];
5   };
7   nodes.machine = { config, pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     services.xserver.enable = true;
14     environment.systemPackages = [ pkgs.soapui ];
15   };
17   testScript = ''
18     machine.wait_for_x()
19     machine.succeed("soapui >&2 &")
20     machine.wait_for_window(r"SoapUI \d+\.\d+\.\d+")
21     machine.sleep(1)
22     machine.screenshot("soapui")
23   '';