From 8a3c40b92a3026da846956f43c871dea9249ea41 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sat, 28 Jan 2023 12:01:37 +0100 Subject: [PATCH] refactoring --- test-doc.sh => check-doc.sh | 0 test-syntax.sh => check-syntax.sh | 0 test-ng.sh => check-tests-ng.sh | 0 test-unittest.sh => check-unittests.sh | 0 tests.sh | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename test-doc.sh => check-doc.sh (100%) rename test-syntax.sh => check-syntax.sh (100%) rename test-ng.sh => check-tests-ng.sh (100%) rename test-unittest.sh => check-unittests.sh (100%) diff --git a/test-doc.sh b/check-doc.sh similarity index 100% rename from test-doc.sh rename to check-doc.sh diff --git a/test-syntax.sh b/check-syntax.sh similarity index 100% rename from test-syntax.sh rename to check-syntax.sh diff --git a/test-ng.sh b/check-tests-ng.sh similarity index 100% rename from test-ng.sh rename to check-tests-ng.sh diff --git a/test-unittest.sh b/check-unittests.sh similarity index 100% rename from test-unittest.sh rename to check-unittests.sh diff --git a/tests.sh b/tests.sh index 1009e18..45766a9 100755 --- a/tests.sh +++ b/tests.sh @@ -27,19 +27,19 @@ echo "current version ${dotdrop_version}" # test syntax echo "checking syntax..." -"${cur}"/test-syntax.sh +"${cur}"/check-syntax.sh # test doc echo "checking documentation..." -"${cur}"/test-doc.sh +"${cur}"/check-doc.sh # unittest echo "unittest..." -"${cur}"/test-unittest.sh +"${cur}"/check-unittests.sh # tests-ng echo "tests-ng..." -"${cur}"/test-ng.sh +"${cur}"/check-tests-ng.sh ## done echo "All tests finished successfully"