Ejemplo n.º 1
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())
Ejemplo n.º 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()
    )
Ejemplo n.º 3
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"
Ejemplo n.º 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"