mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
25 lines
510 B
Nix
25 lines
510 B
Nix
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
||
|
name = "soapui";
|
||
|
meta = with pkgs.lib.maintainers; {
|
||
|
maintainers = [ asbachb ];
|
||
|
};
|
||
|
|
||
|
machine = { config, pkgs, ... }: {
|
||
|
imports = [
|
||
|
./common/x11.nix
|
||
|
];
|
||
|
|
||
|
services.xserver.enable = true;
|
||
|
|
||
|
environment.systemPackages = [ pkgs.soapui ];
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
machine.wait_for_x()
|
||
|
machine.succeed("soapui &")
|
||
|
machine.wait_for_window(r"SoapUI \d+\.\d+\.\d+")
|
||
|
machine.sleep(1)
|
||
|
machine.screenshot("soapui")
|
||
|
'';
|
||
|
})
|