mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
37 lines
760 B
Python
37 lines
760 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
|
|
|
|
class TestSyndic(integration.SyndicCase):
|
|
'''
|
|
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',
|
|
['40'],
|
|
)[0][-1],
|
|
34
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(TestSyndic)
|