Update project.t
This commit is contained in:
@@ -491,11 +491,9 @@ class TestBug1904(TestCase):
|
|||||||
self.t("add pro:a.b test2")
|
self.t("add pro:a.b test2")
|
||||||
|
|
||||||
def validate_order(self, out):
|
def validate_order(self, out):
|
||||||
order = (
|
order = ("a",
|
||||||
"a",
|
" b",
|
||||||
" b",
|
"a-b")
|
||||||
"a-b",
|
|
||||||
)
|
|
||||||
|
|
||||||
lines = out.splitlines(True)
|
lines = out.splitlines(True)
|
||||||
# position where project names start on the lines list
|
# position where project names start on the lines list
|
||||||
@@ -513,13 +511,10 @@ class TestBug1904(TestCase):
|
|||||||
def test_project_eval(self):
|
def test_project_eval(self):
|
||||||
"""1904: verify correct order under projects command"""
|
"""1904: verify correct order under projects command"""
|
||||||
self.add_tasks()
|
self.add_tasks()
|
||||||
|
|
||||||
code, out, err = self.t("projects")
|
code, out, err = self.t("projects")
|
||||||
|
|
||||||
self.validate_order(out)
|
self.validate_order(out)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
from simpletap import TAPTestRunner
|
from simpletap import TAPTestRunner
|
||||||
unittest.main(testRunner=TAPTestRunner())
|
unittest.main(testRunner=TAPTestRunner())
|
||||||
|
|||||||
Reference in New Issue
Block a user