Merge "Fix the regular expression for refstack"
[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 import logging
11 import unittest
12
13 import mock
14
15 from functest.opnfv_tests.vnf.router import vrouter_base
16
17
18 class VrouterOnBoardingBaseTesting(unittest.TestCase):
19
20     def setUp(self):
21         with mock.patch('functest.opnfv_tests.vnf.router.cloudify_vrouter.'
22                         'os.makedirs'):
23             self.vrouter_vnf = vrouter_base.VrouterOnBoardingBase()
24
25
26 if __name__ == "__main__":
27     logging.disable(logging.CRITICAL)
28     unittest.main(verbosity=2)