当前位置: 首页>>代码示例>>Python>>正文


Python FeatureBranchManager.list方法代码示例

本文整理汇总了Python中gitflow.branches.FeatureBranchManager.list方法的典型用法代码示例。如果您正苦于以下问题:Python FeatureBranchManager.list方法的具体用法?Python FeatureBranchManager.list怎么用?Python FeatureBranchManager.list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gitflow.branches.FeatureBranchManager的用法示例。


在下文中一共展示了FeatureBranchManager.list方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_create_new_feature_branch

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
 def test_create_new_feature_branch(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo).init()
     mgr = FeatureBranchManager(gitflow)
     self.assertEqual(0, len(mgr.list()))
     new_branch = mgr.create('foo')
     self.assertEqual(1, len(mgr.list()))
     self.assertEqual('feature/foo', mgr.list()[0].name)
     self.assertEqual(new_branch.commit,
             gitflow.repo.branches['develop'].commit)
开发者ID:opicacek,项目名称:gitflow,代码行数:12,代码来源:test_branches.py

示例2: test_delete_feature_without_commits

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
    def test_delete_feature_without_commits(self):
        gitflow = GitFlow(self.repo)
        mgr = FeatureBranchManager(gitflow)

        self.assertEquals(2, len(mgr.list()))
        mgr.create('foo')
        gitflow.develop().checkout()
        self.assertEquals(3, len(mgr.list()))
        mgr.delete('foo')
        self.assertEquals(2, len(mgr.list()))
        self.assertNotIn('feat/foo', [b.name for b in self.repo.branches])
开发者ID:opicacek,项目名称:gitflow,代码行数:13,代码来源:test_branches.py

示例3: test_delete_feature_with_commits_forcefully

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
    def test_delete_feature_with_commits_forcefully(self):
        gitflow = GitFlow(self.repo)
        mgr = FeatureBranchManager(gitflow)

        self.assertEquals(2, len(mgr.list()))
        mgr.create('foo')
        fake_commit(self.repo, 'A commit on the feature branch.', append=False)
        gitflow.develop().checkout()
        self.assertEquals(3, len(mgr.list()))
        mgr.delete('foo', force=True)
        self.assertEquals(2, len(mgr.list()))
        self.assertNotIn('feat/foo', [b.name for b in self.repo.branches])
开发者ID:opicacek,项目名称:gitflow,代码行数:14,代码来源:test_branches.py

示例4: test_delete_feature_with_commits_raises_error

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
    def test_delete_feature_with_commits_raises_error(self):
        gitflow = GitFlow(self.repo)
        mgr = FeatureBranchManager(gitflow)

        self.assertEquals(2, len(mgr.list()))
        mgr.create('foo')
        fake_commit(self.repo, 'A commit on the feature branch.', append=False)
        gitflow.develop().checkout()
        self.assertEquals(3, len(mgr.list()))
        self.assertRaisesRegexp(GitCommandError,
                'The branch .* is not fully merged',
                mgr.delete, 'foo')
开发者ID:opicacek,项目名称:gitflow,代码行数:14,代码来源:test_branches.py

示例5: test_delete_already_merged_feature

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
    def test_delete_already_merged_feature(self):
        gitflow = GitFlow(self.repo)
        mgr = FeatureBranchManager(gitflow)

        self.assertEquals(2, len(mgr.list()))
        mgr.create('foo')
        fake_commit(self.repo, 'Dummy commit #1')
        fake_commit(self.repo, 'Dummy commit #2')
        mgr.merge('foo', 'devel')

        self.assertEquals(3, len(mgr.list()))
        mgr.delete('foo')
        self.assertEquals(2, len(mgr.list()))
        self.assertNotIn('feat/foo', [b.name for b in mgr.list()])
开发者ID:opicacek,项目名称:gitflow,代码行数:16,代码来源:test_branches.py

示例6: test_create_new_feature_branch_non_default_prefix

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
 def test_create_new_feature_branch_non_default_prefix(self):
     gitflow = GitFlow(self.repo).init()
     mgr = FeatureBranchManager(gitflow)
     new_branch = mgr.create('foo')
     self.assertEqual(new_branch.name, 'feat/foo')
     self.assertIn('feat/foo', [b.name for b in mgr.list()])
     self.assertEqual(new_branch.commit,
             gitflow.repo.branches['devel'].commit)
开发者ID:opicacek,项目名称:gitflow,代码行数:10,代码来源:test_branches.py

示例7: test_list_without_matching_prefix

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
 def test_list_without_matching_prefix(self):
     gitflow = GitFlow()
     mgr = FeatureBranchManager(gitflow, 'fb-')
     expected = []
     self.assertItemsEqual(expected, [b.name for b in mgr.list()])
开发者ID:opicacek,项目名称:gitflow,代码行数:7,代码来源:test_branches.py

示例8: test_list

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
 def test_list(self):
     gitflow = GitFlow()
     mgr = FeatureBranchManager(gitflow)
     expected = ['feat/even', 'feat/recursion']
     self.assertItemsEqual(expected, [b.name for b in mgr.list()])
开发者ID:opicacek,项目名称:gitflow,代码行数:7,代码来源:test_branches.py

示例9: test_empty_repo_has_no_features

# 需要导入模块: from gitflow.branches import FeatureBranchManager [as 别名]
# 或者: from gitflow.branches.FeatureBranchManager import list [as 别名]
 def test_empty_repo_has_no_features(self):
     repo = create_git_repo(self)
     gitflow = GitFlow(repo)
     mgr = FeatureBranchManager(gitflow)
     self.assertItemsEqual([], mgr.list())
开发者ID:opicacek,项目名称:gitflow,代码行数:7,代码来源:test_branches.py


注:本文中的gitflow.branches.FeatureBranchManager.list方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。