reviewboard test branch

This commit is contained in:
Stephen McQuay 2013-02-09 19:13:35 -08:00
parent afa0a2899e
commit 38d8dfa6b4
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
from fabric.api import run
from fabric.api import run, cd
def hello():
run("ls")
def rb_test():
with cd('/tmp/'):
run('pwd')
run('ls')