Example #1
0
 def test_custom_repo_has_branches(self):
     gitflow = GitFlow(self.repo).init()
     self.assertItemsEqual(['master', 'production'], gitflow.branch_names())
Example #2
0
 def test_empty_repo_has_no_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo)
     self.assertItemsEqual([], gitflow.branch_names())
Example #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())
Example #4
0
 def test_custom_repo_has_branches(self):
     gitflow = GitFlow(self.repo).init()
     self.assertItemsEqual(['master', 'production'],
             gitflow.branch_names())
Example #5
0
 def test_empty_repo_has_no_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo)
     self.assertItemsEqual([], gitflow.branch_names())
Example #6
0
 def test_gitflow_init_creates_branches(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo).init()
     self.assertItemsEqual(['master', 'develop'],
             gitflow.branch_names())