Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/calendar.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_basic_command_offset(self):
)
self.assertIn("Su Mo Tu We Th Fr Sa", out)

def test_basic_command(self):
def test_basic_command_weekstart_monday(self):
"""Verify 'calendar rc.weekstart:Monday' does not fail'"""
code, out, err = self.t("calendar rc.weekstart:Monday")
self.assertIn("Mo Tu We Th Fr Sa Su", out)
Expand Down Expand Up @@ -202,7 +202,7 @@ def test_jan_argument(self):
"""Verify 'calendar jan' does not fail"""
code, out, err = self.t("calendar jan")

def test_2015_argument(self):
def test_2015_donkey_argument(self):
"""Verify 'calendar 2015 donkey' does fail"""
code, out, err = self.t.runError("calendar 2015 donkey")
self.assertIn("Could not recognize argument", err)
Expand Down
5 changes: 0 additions & 5 deletions test/dependencies.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ def test_add_dep_to_missing_task(self):
code, out, err = self.t.runError("99 modify dep:1")
self.assertIn("No tasks specified.", err)

def test_add_dep_to_missing_task(self):
"""Add a dependency to a missing task"""
code, out, err = self.t.runError("99 modify dep:1")
self.assertIn("No tasks specified.", err)

def test_double_dep(self):
"""Check adding a dep twice is an error"""
self.t("2 modify dep:1")
Expand Down
2 changes: 1 addition & 1 deletion test/project.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_project_spaces(self):
code, out, err = self.t('pro:"foo bar" count')
self.assertEqual(out.strip(), "1")

def test_project_spaces(self):
def test_project_someday_filter(self):
"""TW #2386: Filter for project:someday"""

self.t("add hello pro:someday")
Expand Down
2 changes: 1 addition & 1 deletion test/purge.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_purge_children_fail_confirm(self):
code, out, err = self.t("count")
self.assertEqual("4\n", out)

def test_purge_children(self):
def test_purge_children_removes_dependencies(self):
"""Purge command removes dependencies on indirectly purged tasks"""
self.t("add one recur:daily due:yesterday")
uuid = self.t("_get 1.uuid")[1].strip()
Expand Down
Loading