From 854ecabf763c13dc7afb38d86a1c5ef0467c90b4 Mon Sep 17 00:00:00 2001 From: Karl Voit Date: Sat, 3 Apr 2021 16:34:29 +0200 Subject: [PATCH] unit_test: marked empty test with FIXXME --- tests/unit_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit_tests.py b/tests/unit_tests.py index 3838369..d6eb817 100755 --- a/tests/unit_tests.py +++ b/tests/unit_tests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Time-stamp: <2020-06-07 16:20:55 vk> +# Time-stamp: <2021-04-03 16:16:22 vk> # invoke tests using following command line: # ~/src/vktag % PYTHONPATH="~/src/filetags:" tests/unit_tests.py --verbose @@ -15,6 +15,7 @@ import platform import time # for sleep() from shutil import rmtree + # TEMPLATE for debugging: # try: # except AssertionError: @@ -463,6 +464,7 @@ class TestLocateAndParseControlledVocabulary(unittest.TestCase): def test_include_lines_in_cv(self): """ + FIXXME!!!! This tests does not use the setup from the test class. However, it does use several other util functions defined in this class. Therefore, I set up a different test case here and re-use the util functions.