Compare commits

...

1 Commits

Author SHA1 Message Date
Stephen McQuay 38d8dfa6b4 reviewboard test branch 2013-02-09 19:13:35 -08:00
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')