Add ping function to the tests module

This commit is contained in:
Thomas S Hatch 2011-03-11 13:38:12 -07:00
parent 322df50029
commit dc9e7da5ef

View File

@ -1,6 +1,5 @@
'''
Module for shelling out commands, inclusion of this module should be
configurable for security reasons
Module for running arbitrairy tests
'''
def echo(text):
@ -9,3 +8,10 @@ def echo(text):
'''
print 'Echo got called!'
return text
def ping():
'''
Just used to make sure the minion is up and responding
Return True
'''
return True