From 201f7c00c4c7cf6e6b4f5296ff35f34c48d1c701 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 23 Dec 2024 18:42:29 +0100 Subject: test(scripts/lint_missing_tests.sh): Remove This functionality is now available via the `coImport` feature in the `mkByName` `nixLib` function. --- scripts/lint_missing_tests.sh | 66 ------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100755 scripts/lint_missing_tests.sh (limited to 'scripts') diff --git a/scripts/lint_missing_tests.sh b/scripts/lint_missing_tests.sh deleted file mode 100755 index dffb86e..0000000 --- a/scripts/lint_missing_tests.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/usr/bin/env sh - -# Shell library {{{ -die() { - echo "$1" >&2 - exit 1 -} -warning() { - eprintln "\033[1;91m==> WARNING:\033[0m" "\033[1;93m$*\033[0m" -} -eprintln() { - >&2 println "$@" -} -println() { - printf "$*\n" -} -# }}} - -test_template() { - test_name="$(basename "$1")" - cat <"$test_file" - else - warning "'$dir' is missing it's test (at '$test_file')!" - fi -done -- cgit 1.4.1