mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-19 18:25:11 +02:00
tests: remove special treatment of module
Since we no longer need to extract `tests.dontRun` from an attrset, we no longer need the "special" `module` attr.
This commit is contained in:
parent
7b2a6cd9e6
commit
123a55ed6f
14 changed files with 266 additions and 285 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
# Test that nothing is configured by default
|
||||
default.module =
|
||||
default =
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
files."files_test.lua" = { };
|
||||
|
@ -18,7 +18,7 @@
|
|||
};
|
||||
|
||||
# Test Lua loader enabled
|
||||
enabled.module =
|
||||
enabled =
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
luaLoader.enable = true;
|
||||
|
@ -38,7 +38,7 @@
|
|||
};
|
||||
|
||||
# Test Lua loader disabled
|
||||
disabled.module =
|
||||
disabled =
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
luaLoader.enable = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue