(self)
| 47 | project.delete() |
| 48 | |
| 49 | def testEditWithoutParameters(self): |
| 50 | project = self.g.get_project(4101939) |
| 51 | old_name = project.name |
| 52 | project.edit() |
| 53 | self.assertEqual(project.name, old_name) |
| 54 | |
| 55 | def testEditWithAllParameters(self): |
| 56 | project = self.g.get_project(4101939) |
nothing calls this directly
no test coverage detected