diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/testing_test.nix | 14 |
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; - } -] |