예제 #1
0
 def test_custom_repo_has_branches(self):
     gitflow = GitFlow(self.repo).init()
     self.assertItemsEqual(['master', 'production'], gitflow.branch_names())
예제 #2
0
 def test_empty_repo_has_no_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo)
     self.assertItemsEqual([], gitflow.branch_names())
예제 #3
0
 def test_gitflow_init_creates_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo).init()
     self.assertItemsEqual(['master', 'develop'], gitflow.branch_names())
예제 #4
0
파일: test_core.py 프로젝트: OBdA/gitflow
 def test_custom_repo_has_branches(self):
     gitflow = GitFlow(self.repo).init()
     self.assertItemsEqual(['master', 'production'],
             gitflow.branch_names())
예제 #5
0
파일: test_core.py 프로젝트: OBdA/gitflow
 def test_empty_repo_has_no_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo)
     self.assertItemsEqual([], gitflow.branch_names())
예제 #6
0
파일: test_core.py 프로젝트: OBdA/gitflow
 def test_gitflow_init_creates_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo).init()
     self.assertItemsEqual(['master', 'develop'],
             gitflow.branch_names())