Files
zaza-openstack-tests/zaza/charm_tests/dragent/tests.py
T
2018-05-14 10:49:49 -07:00

23 lines
452 B
Python

#!/usr/bin/env python3
import unittest
from zaza.utilities import generic as generic_utils
from zaza.charm_tests.dragent import test
class DRAgentTest(unittest.TestCase):
BGP_PEER_APPLICATION = 'quagga'
@classmethod
def setUpClass(cls):
generic_utils.setup_logging()
def test_bgp_routes(self):
test.test_bgp_routes(peer_application_name=self.BGP_PEER_APPLICATION)
if __name__ == "__main__":
unittest.main()