示例#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]
示例#2
0
def test_pull_simple(sh):
    hg.pull('foo')
    assert sh.called
    assert sh.call_args[0][0] == 'hg pull -R foo'
示例#3
0
文件: test_hg.py 项目: spacefan/paver
def test_pull_simple(sh):
    hg.pull('foo')
    assert sh.called
    assert sh.call_args[0][0] == 'hg pull -R foo'
示例#4
0
文件: test_hg.py 项目: spacefan/paver
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]
示例#5
0
文件: test_hg.py 项目: drewrm/paver
def test_pull(sh):
    hg.pull("bar")
    assert sh.called
    assert sh.call_args[0][0] == "cd bar; hg pull"