mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-20 04:13:07 +02:00
Docs: Updated man page regarding 'debug.parser' values
- Modified tests that use the above.
This commit is contained in:
parent
d210c6d07f
commit
d87a753de1
5 changed files with 19 additions and 6 deletions
12
test/debug.t
12
test/debug.t
|
@ -53,6 +53,18 @@ class TestDebugMode(TestCase):
|
|||
|
||||
def test_debug_parser_output(self):
|
||||
"""Verify debug parser mode generates interesting output"""
|
||||
code, out, err = self.t("list rc.debug.parser=2")
|
||||
|
||||
# Debug
|
||||
self.assertIn("Config::load", err)
|
||||
self.assertIn("Filtered 2 tasks --> 2 tasks [pending only]", err)
|
||||
self.assertIn("Perf task", err)
|
||||
|
||||
# Parser
|
||||
self.assertIn("CLI2::prepareFilter", err)
|
||||
|
||||
def test_debug_parser_eval_output(self):
|
||||
"""Verify debug parser + eval mode generates interesting output"""
|
||||
code, out, err = self.t("list rc.debug.parser=3")
|
||||
|
||||
# Debug
|
||||
|
|
|
@ -79,7 +79,7 @@ class TestBug1472(TestCase):
|
|||
|
||||
def test_startswith_regex(self):
|
||||
"""Verify .startswith works with regexes"""
|
||||
code, out, err = self.t("rc.regex:on rc.debug.parser=3 description.startswith:A ls")
|
||||
code, out, err = self.t("rc.regex:on description.startswith:A ls")
|
||||
self.assertIn("A to Z", out)
|
||||
self.assertNotIn("Z to A", out)
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ class TestBug295(TestCase):
|
|||
# Taskwarrior sees /\/twp\//TWO/.
|
||||
#
|
||||
# Verify using:
|
||||
# code, out, err = self.t('rc.debug.parser=3 1 modify /\\\\/two\\\\//TWO/')
|
||||
# code, out, err = self.t('rc.debug.parser=2 1 modify /\\\\/two\\\\//TWO/')
|
||||
# self.tap(err)
|
||||
|
||||
self.t('1 modify /\\\\/two\\\\//TWO/')
|
||||
|
|
|
@ -90,7 +90,7 @@ class TestUnicode(TestCase):
|
|||
# Something in the launch code converts \\ --> \.
|
||||
# Taskwarrior sees \.
|
||||
#
|
||||
#code, out, err = self.t("add rc.debug.parser=3 Price \\\\u20A43")
|
||||
#code, out, err = self.t("add rc.debug.parser=2 Price \\\\u20A43")
|
||||
#self.tap(err)
|
||||
|
||||
self.t("add Price \\\\u20A43")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue