(self)
| 114 | |
| 115 | class TestProject(TestBashCompletionBase): |
| 116 | def setUp(self): |
| 117 | super(TestProject, self).setUp() |
| 118 | |
| 119 | code, out, err = self.t("add testing project expansion project:todd") |
| 120 | self.assertIn("Created task 1", out) |
| 121 | |
| 122 | # Ensure project was created |
| 123 | code, out, err = self.t("projects") |
| 124 | self.assertIn("todd", out) |
| 125 | |
| 126 | def test_project_non_matching(self): |
| 127 | """project: expansion fails on non matching attribute""" |
nothing calls this directly
no outgoing calls
no test coverage detected