mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f22a7ae1a8
Co-authored-by: Benjamin Asbach <asbachb@users.noreply.github.com>
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")
|
|
'';
|
|
})
|