fuel-specs/tests/test_titles_up_to_7_0.py

50 lines
1.5 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.
"""
WARNING: This file is only used to check old specifications
for versions up to 7.0.
DO NOT MODIFY!
"""
from tests import base
class TestTitles(base.BaseDocTest):
expected_structure = {
'Problem description': None,
'Proposed change': {
'Alternatives': None,
'Data model impact': None,
'REST API impact': None,
'Upgrade impact': None,
'Security impact': None,
'Notifications impact': None,
'Other end user impact': None,
'Performance Impact': None,
'Other deployer impact': None,
'Developer impact': None
},
'Implementation': {
'Assignee(s)': None,
'Work Items': None
},
'Dependencies': None,
'Testing': None,
'Documentation Impact': None,
'References': None
}
files = []
versions = ('5.1', '6.0', '6.1', 7.0)