예제 #1
0
 def test_new_repo_has_no_staged_commits(self):
     sandbox = create_sandbox(self)
     gitflow = GitFlow(sandbox).init()
     self.assertFalse(gitflow.has_staged_commits())
예제 #2
0
파일: test_core.py 프로젝트: OBdA/gitflow
 def test_new_repo_has_no_staged_commits(self):
     sandbox = create_sandbox(self)
     gitflow = GitFlow(sandbox).init()
     self.assertFalse(gitflow.has_staged_commits())
예제 #3
0
 def test_existing_repo_has_staged_commits(self):
     gitflow = GitFlow(self.repo)
     self.assertTrue(gitflow.has_staged_commits())
예제 #4
0
파일: test_core.py 프로젝트: OBdA/gitflow
 def test_existing_repo_has_staged_commits(self):
     gitflow = GitFlow(self.repo)
     self.assertTrue(gitflow.has_staged_commits())