salt/tests/integration/client/syndic.py

40 lines
819 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing libs
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../../')
2012-03-29 07:02:40 +00:00
# Import salt libs
import integration
2012-03-29 07:02:40 +00:00
class TestSyndic(integration.SyndicCase):
2012-03-29 07:02:40 +00:00
'''
Validate the syndic interface by testing the test module
'''
def test_ping(self):
'''
test.ping
'''
self.assertTrue(self.run_function('test.ping'))
def test_fib(self):
'''
test.fib
'''
self.assertEqual(
self.run_function(
'test.fib',
2015-04-11 18:48:48 +00:00
['20'],
)[0],
6765
2012-03-29 07:02:40 +00:00
)
if __name__ == '__main__':
from integration import run_tests
run_tests(TestSyndic)