nixpkgs/nixos/tests/sgt-puzzles.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
593 B
Nix
Raw Normal View History

2022-11-26 07:59:13 +00:00
import ./make-test-python.nix ({ pkgs, ...} :
{
name = "sgt-puzzles";
2022-11-26 07:59:13 +00:00
meta = with pkgs.lib.maintainers; {
maintainers = [ tomfitzhenry ];
};
nodes.machine = { ... }:
{
imports = [
./common/x11.nix
];
services.xserver.enable = true;
environment.systemPackages = with pkgs; [
sgt-puzzles
2022-11-26 07:59:13 +00:00
];
};
enableOCR = true;
testScript = { nodes, ... }:
''
start_all()
machine.wait_for_x()
machine.execute("mines >&2 &")
machine.wait_for_window("Mines")
machine.wait_for_text("Marked")
machine.screenshot("mines")
'';
})