Beispiel #1
0
def test_pull_rev_url(sh):
    hg.pull('foo', 'bar', 'baz')
    assert sh.called
    assert sh.call_args[0][0] == 'hg pull -r bar -R foo baz', sh.call_args[0][0]
Beispiel #2
0
def test_pull_simple(sh):
    hg.pull('foo')
    assert sh.called
    assert sh.call_args[0][0] == 'hg pull -R foo'
Beispiel #3
0
def test_pull_simple(sh):
    hg.pull('foo')
    assert sh.called
    assert sh.call_args[0][0] == 'hg pull -R foo'
Beispiel #4
0
def test_pull_rev_url(sh):
    hg.pull('foo', 'bar', 'baz')
    assert sh.called
    assert sh.call_args[0][0] == 'hg pull -r bar -R foo baz', sh.call_args[0][
        0]
Beispiel #5
0
def test_pull(sh):
    hg.pull("bar")
    assert sh.called
    assert sh.call_args[0][0] == "cd bar; hg pull"