d3bc42483a
- add py3 to tox.ini (gate already tests py3) - move all tests to $GITROOT/test so they can all run through testr - add scrapy to test-requirements.txt to support sitemap tests - move tests from test_items.py to test_sitemap_file.py - fix broken sitemap tests - add newton to list of old releases in sitemap_file.py - ignore flake8 H101 as it returns false positives for Sphinx conf.py - Use openstackdocstheme for docs - Update sitemap README - Restructure repo docs - fix minor style issues Change-Id: I22c018149b2eefde6ca5c38c22ac06886fe9a7a8
38 lines
1.3 KiB
Python
38 lines
1.3 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.
|
|
|
|
import mock
|
|
from os_doc_tools import index
|
|
import unittest
|
|
|
|
|
|
class TestGenerateIndex(unittest.TestCase):
|
|
def test_dir_created(self):
|
|
path = 'path'
|
|
with mock.patch.object(index, 'open'):
|
|
with mock.patch.object(index.os, 'mkdir') as mock_mkdir:
|
|
index.generate_index_file(path)
|
|
self.assertTrue(mock_mkdir.called)
|
|
|
|
def test_dir_not_created_when_exists(self):
|
|
path = 'path'
|
|
with mock.patch.object(index, 'open'):
|
|
with mock.patch.object(index.os, 'mkdir') as mock_mkdir:
|
|
with mock.patch.object(index.os.path, 'isdir',
|
|
returned_value=True):
|
|
index.generate_index_file(path)
|
|
self.assertFalse(mock_mkdir.called)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|