Files
zaza-openstack-tests/zaza/charm_tests/dragent/tests.py
T
David Ames 6ad3745206 Separate overcloud and undercloud settings
Changed the name of configure_dragent
Removed the network.yaml file requirement for tests
Made a bright line distinction between declared overcloud network
settings and environment specific undercloud settings
The tests will declare the overcloud settings and acquire the
undercloud settings from environment variables.
2018-04-19 14:42:29 -07:00

23 lines
439 B
Python

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