mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-24 18:06:42 +02:00
Test: Added burndown chart test in color
This commit is contained in:
parent
958637e2ca
commit
f3503923c0
1 changed files with 7 additions and 0 deletions
|
@ -65,6 +65,13 @@ class TestBurndownCommand(TestCase):
|
|||
self.assertIn("+", out)
|
||||
self.assertIn("X", out)
|
||||
|
||||
def test_burndown_daily_color(self):
|
||||
"""Ensure burndown.daily with color, generates a chart"""
|
||||
code, out, err = self.t("burndown.daily rc._forcecolor:on")
|
||||
self.assertIn("Daily Burndown ()", out)
|
||||
self.assertIn("No convergence", out)
|
||||
self.assertNotIn("X", out)
|
||||
|
||||
def test_burndown_weekly(self):
|
||||
"""Ensure burndown.weekly generates a chart"""
|
||||
code, out, err = self.t("burndown.weekly")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue