(self)
| 782 | assert_invalid_name(' ') |
| 783 | |
| 784 | def test_create_existent_name(self): |
| 785 | self.repo.create_branch('branch1', self.repo.current_branch.head) |
| 786 | self._assert_value_error('branch1', 'exists') |
| 787 | |
| 788 | def test_create(self): |
| 789 | self.repo.create_branch('branch1', self.repo.current_branch.head) |
nothing calls this directly
no test coverage detected