Support different user/project domain values
[functest.git] / functest / tests / unit / vnf / router / test_vrouter_base.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2017 Okinawa Open Laboratory and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # pylint: disable=missing-docstring
11
12 import logging
13 import unittest
14
15 import mock
16
17 from functest.opnfv_tests.vnf.router import vrouter_base
18
19
20 class VrouterOnBoardingBaseTesting(unittest.TestCase):
21
22     def setUp(self):
23         with mock.patch('functest.opnfv_tests.vnf.router.cloudify_vrouter.'
24                         'os.makedirs'):
25             self.vrouter_vnf = vrouter_base.VrouterOnBoardingBase()
26
27
28 if __name__ == "__main__":
29     logging.disable(logging.CRITICAL)
30     unittest.main(verbosity=2)