about summary refs log tree commit diff
path: root/nixpkgs/nixos/lib/testing/name.nix
blob: 0682873c7bcd0adb35afdce42a3dd2a112455c82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, ... }:
let
  inherit (lib) mkOption types;
in
{
  options.name = mkOption {
    description = ''
      The name of the test.

      This is used in the derivation names of the [{option}`driver`](#test-opt-driver) and [{option}`test`](#test-opt-test) runner.
    '';
    type = types.str;
  };
}