2022-09-30 11:47:45 +00:00
|
|
|
{ lib, ... }:
|
|
|
|
let
|
|
|
|
inherit (lib) mkOption types mdDoc;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.name = mkOption {
|
|
|
|
description = mdDoc ''
|
|
|
|
The name of the test.
|
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
This is used in the derivation names of the [{option}`driver`](#test-opt-driver) and [{option}`test`](#test-opt-test) runner.
|
2022-09-30 11:47:45 +00:00
|
|
|
'';
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
}
|