1
0

test_syndic.py 638 B

1234567891011121314151617181920212223242526
  1. import pytest
  2. from tests.support.case import SyndicCase
  3. from tests.support.helpers import slowTest
  4. from tests.support.unit import skipIf
  5. @pytest.mark.windows_whitelisted
  6. @skipIf(True, "The Syndic Tests are currently broken. See #58975")
  7. class TestSyndic(SyndicCase):
  8. """
  9. Validate the syndic interface by testing the test module
  10. """
  11. @slowTest
  12. def test_ping(self):
  13. """
  14. test.ping
  15. """
  16. self.assertTrue(self.run_function("test.ping"))
  17. @slowTest
  18. def test_fib(self):
  19. """
  20. test.fib
  21. """
  22. self.assertEqual(self.run_function("test.fib", ["20"],)[0], 6765)