Update the doc strings in the test module

This commit is contained in:
Thomas S Hatch 2011-03-14 16:54:36 -06:00
parent 36496f32de
commit d3d83e255a

View file

@ -5,6 +5,9 @@ Module for running arbitrairy tests
def echo(text):
'''
Return a string - used for testing the connection
CLI Example:
salt '*' test.echo 'foo bar baz quo qux'
'''
print 'Echo got called!'
return text
@ -13,5 +16,8 @@ def ping():
'''
Just used to make sure the minion is up and responding
Return True
CLI Example:
salt '*' test.ping
'''
return True