summary refs log tree commit diff
path: root/nixos/tests/libxmlb.nix
blob: 3bee568ac5a20a50fc878d96c7a06b5f2854362e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# run installed tests
import ./make-test.nix ({ pkgs, ... }:

{
  name = "libxmlb";
  meta = {
    maintainers = pkgs.libxmlb.meta.maintainers;
  };

  machine = { pkgs, ... }: {
    environment.systemPackages = with pkgs; [ gnome-desktop-testing ];
  };

  testScript = ''
    $machine->succeed("gnome-desktop-testing-runner -d '${pkgs.libxmlb.installedTests}/share'");
  '';
})