From 9fdc0bb2bfa2d1dd631bb39f3b9e7cfec16bcd54 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Fri, 14 Jul 2023 18:28:38 +0200 Subject: lib.lists.removePrefix: init --- lib/tests/misc.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'lib/tests/misc.nix') diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix index 5c824a066e16..4f7035a53f5b 100644 --- a/lib/tests/misc.nix +++ b/lib/tests/misc.nix @@ -501,6 +501,23 @@ runTests { expected = false; }; + testListRemovePrefixExample1 = { + expr = lists.removePrefix [ 1 2 ] [ 1 2 3 4 ]; + expected = [ 3 4 ]; + }; + testListRemovePrefixExample2 = { + expr = (builtins.tryEval (lists.removePrefix [ 0 1 ] [ 1 2 3 4 ])).success; + expected = false; + }; + testListRemovePrefixEmptyPrefix = { + expr = lists.removePrefix [ ] [ 1 2 ]; + expected = [ 1 2 ]; + }; + testListRemovePrefixEmptyList = { + expr = (builtins.tryEval (lists.removePrefix [ 1 2 ] [ ])).success; + expected = false; + }; + testFoldAttrs = { expr = foldAttrs (n: a: [n] ++ a) [] [ { a = 2; b = 7; } -- cgit 1.4.1