![Rodolfo Alonso Hernandez](/assets/img/avatar_default.png)
The functional base test class should be implemented under os-vif. Other projects will inherit from this project to implement functional test cases. Change-Id: Ib5873687032bfb55d1847d4948f6e9679cf6d31e Closes-Bug: #1817938
24 lines
897 B
Python
24 lines
897 B
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from os_vif.tests.functional import base as os_vif_base
|
|
|
|
|
|
wait_until_true = os_vif_base.wait_until_true
|
|
|
|
|
|
class VifPlugOvsBaseFunctionalTestCase(os_vif_base.BaseFunctionalTestCase):
|
|
"""Base class for vif_plug_ovs functional tests."""
|
|
|
|
COMPONENT_NAME = 'vif_plug_ovs'
|
|
PRIVILEGED_GROUP = 'vif_plug_ovs_privileged'
|