(self)
| 298 | self.assertEquals("", self.MakeStep().Git("dummy")) |
| 299 | |
| 300 | def testCommonPrepareDefault(self): |
| 301 | self.Expect([ |
| 302 | Cmd("git status -s -uno", ""), |
| 303 | Cmd("git checkout -f origin/main", ""), |
| 304 | Cmd("git fetch", ""), |
| 305 | Cmd("git branch", " branch1\n* %s" % TEST_CONFIG["BRANCHNAME"]), |
| 306 | RL("Y"), |
| 307 | Cmd("git branch -D %s" % TEST_CONFIG["BRANCHNAME"], ""), |
| 308 | ]) |
| 309 | self.MakeStep().CommonPrepare() |
| 310 | self.MakeStep().PrepareBranch() |
| 311 | |
| 312 | def testCommonPrepareNoConfirm(self): |
| 313 | self.Expect([ |
nothing calls this directly
no test coverage detected