From 4f9ffa45859fd005c6a0560f5c719c8cc3b35e3d Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 23 Jun 2021 08:30:11 +0200 Subject: [PATCH] #79: Improve docs --- src/core/tests/test_functional.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/tests/test_functional.py b/src/core/tests/test_functional.py index e99cacfb..dd03d7d6 100644 --- a/src/core/tests/test_functional.py +++ b/src/core/tests/test_functional.py @@ -78,6 +78,10 @@ def test_global_silent_switch_is_making_silent_all_fancy_output(self): self.assertNotIn('[global]', full_output) # per-task (IO) def test_tasks_are_not_showing_internal_tasks(self): + """ + Assumptions: ":exec" task is an internal task that has `internal=True` set + """ + full_output_all, exit_code_all = self.run_and_capture_output([':tasks', '--all']) full_output_not_all, exit_code_not_all = self.run_and_capture_output([':tasks'])