示例#1
0
文件: test_git.py 项目: dcramer/paver
def test_branch_chekout_cwd(sh):
    """it should get the CWD and assume that is the repo"""

    git.branch_checkout("my_branch")
    assert sh.called
    assert sh.call_args[0][
        0] == "cd %(current_path)s; git checkout my_branch" % dict(
            current_path=os.getcwd())
示例#2
0
def test_branch_chekout_cwd(sh):
    """it should get the CWD and assume that is the repo"""
    
    git.branch_checkout("my_branch")
    assert sh.called
    assert sh.call_args[0][0] == "cd %(current_path)s; git checkout my_branch" % dict(
        current_path=os.getcwd()
    )
示例#3
0
文件: test_git.py 项目: dcramer/paver
def test_simple_branch_checkout(sh):
    git.branch_checkout("my_branch", path="repo_path")
    assert sh.called
    assert sh.call_args[0][0] == "cd repo_path; git checkout my_branch"
示例#4
0
def test_simple_branch_checkout(sh):
    git.branch_checkout("my_branch", path="repo_path")
    assert sh.called
    assert sh.call_args[0][0] == "cd repo_path; git checkout my_branch"