
This patch rehomes neutron.extensions.portbindings API definition and associated constants into neutron-lib. Constants defined in portbinding (included herein) are used in numerous subprojects including networking-ovn and others. Unit tests and release note are also included. Change-Id: I8979e3ab246b77dd7a0e9d7a33b901e6c68feb72
25 lines
1.1 KiB
Python
25 lines
1.1 KiB
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 neutron_lib.api.definitions import portbindings
|
|
from neutron_lib.tests.unit.api.definitions import base
|
|
|
|
|
|
class PortbindingsDefinitionTestCase(base.DefinitionBaseTestCase):
|
|
extension_module = portbindings
|
|
extension_resources = (portbindings.COLLECTION_NAME,)
|
|
extension_attributes = (portbindings.VIF_TYPE,
|
|
portbindings.VIF_DETAILS,
|
|
portbindings.VNIC_TYPE,
|
|
portbindings.HOST_ID,
|
|
portbindings.PROFILE)
|