about summary refs log tree commit diff
path: root/tests/testing_test.nix
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2023-06-05 13:12:17 +0200
committerBaitinq <[email protected]>2023-06-05 13:14:05 +0200
commitc6933d5e516ef2bf7e0254d83771dd185b899b11 (patch)
tree8b02cbf5f77724961b4a8f9816fbb934f8e78076 /tests/testing_test.nix
parentFlake: Add nixtest (diff)
downloadnixos-config-c6933d5e516ef2bf7e0254d83771dd185b899b11.tar.gz
nixos-config-c6933d5e516ef2bf7e0254d83771dd185b899b11.tar.bz2
nixos-config-c6933d5e516ef2bf7e0254d83771dd185b899b11.zip
Tests: Add initial flake test
Diffstat (limited to '')
-rw-r--r--tests/testing_test.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/testing_test.nix b/tests/testing_test.nix
deleted file mode 100644
index b977fc0..0000000
--- a/tests/testing_test.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-let
-  lib = import ./lib.nix;
-in [
-  {
-    name = "Test function concatenate";
-    actual = lib.concatenate "a" "b";
-    expected = "ab";
-  }
-  {
-    name = "Test function add";
-    actual = lib.add 1 2;
-    expected = 3;
-  }
-]