コード例 #1
0
 def test_existing_repo_is_not_dirty(self):
     gitflow = GitFlow(self.repo)
     self.assertTrue(gitflow.is_dirty())
コード例 #2
0
ファイル: test_core.py プロジェクト: OBdA/gitflow
 def test_existing_repo_is_not_dirty(self):
     gitflow = GitFlow(self.repo)
     self.assertTrue(gitflow.is_dirty())
コード例 #3
0
 def test_new_repo_is_not_dirty(self):
     sandbox = create_sandbox(self)
     gitflow = GitFlow(sandbox).init()
     self.assertFalse(gitflow.is_dirty())
コード例 #4
0
ファイル: test_core.py プロジェクト: OBdA/gitflow
 def test_new_repo_is_not_dirty(self):
     sandbox = create_sandbox(self)
     gitflow = GitFlow(sandbox).init()
     self.assertFalse(gitflow.is_dirty())