fuel-specs/tests/test_titles_up_to_7_0.py
Roman Prykhodchenko a08db782d0 Update the template
This patch introduces an updated version of blueprint
specification template. It incorporates the following
improvements:

* Sections were re-groupped in order to provide a more
  logically clear structure of the document.

* New sections were introduced in order to describe changes
  to multiple components in a single document.

* Some spelling and styling errors were fixed

Change-Id: I60d4f8b5e92d519988959785156b4bbe1ccb8ed2
2015-08-19 23:53:44 +02:00

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)