about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/xpadneo.nix
blob: c7b72831fce8285f27c296bf4030d3efdb979604 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ./make-test-python.nix ({ lib, pkgs, ... }: {
  name = "xpadneo";
  meta.maintainers = with lib.maintainers; [ kira-bruneau ];

  nodes = {
    machine = {
      config.hardware.xpadneo.enable = true;
    };
  };

  # This is just a sanity check to make sure the module was
  # loaded. We'd have to find some way to mock an xbox controller if
  # we wanted more in-depth testing.
  testScript = ''
    machine.start();
    machine.succeed("modinfo hid_xpadneo | grep 'version:\s\+${pkgs.linuxPackages.xpadneo.version}'")
  '';
})