Files
neutron-lib/neutron_lib/tests/unit/api/definitions/test_default_subnetpools.py
Boden R 0828cad815 rehome default subnet pools API def
This patch rehomes neutron's default subnet pools extension into
neutron-libs API definition layout/structure. UTs and a reno are also
included.

Change-Id: Ib841f3727e758c0c19c9a4a0acd221ecb4081313
2017-08-07 07:35:37 -06:00

21 lines
909 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 neutron_lib.api.definitions import default_subnetpools
from neutron_lib.tests.unit.api.definitions import base
class DefaultSubnetPoolsDefinitionTestCase(base.DefinitionBaseTestCase):
extension_module = default_subnetpools
extension_resources = ()
extension_attributes = (default_subnetpools.USE_DEFAULT_SUBNETPOOL,)