(self)
| 333 | self.assertRaises(Exception, self.MakeStep().PrepareBranch) |
| 334 | |
| 335 | def testInitialEnvironmentChecks(self): |
| 336 | TextToFile("", os.path.join(TEST_CONFIG["DEFAULT_CWD"], ".git")) |
| 337 | os.environ["EDITOR"] = "vi" |
| 338 | self.Expect([ |
| 339 | Cmd("which vi", "/usr/bin/vi"), |
| 340 | ]) |
| 341 | self.MakeStep().InitialEnvironmentChecks(TEST_CONFIG["DEFAULT_CWD"]) |
| 342 | |
| 343 | def testTagTimeout(self): |
| 344 | self.Expect([ |
nothing calls this directly
no test coverage detected