Source code for tests.fixes_tests
#!/usr/bin/env python3
"""Tests for fixes module."""
#
# (C) Pywikibot team, 2015-2022
#
# Distributed under the terms of the MIT license.
#
import unittest
from contextlib import suppress
from pywikibot import fixes
from tests import join_data_path
from tests.aspects import TestCase
[docs]
class TestFixes(TestCase):
"""Test the fixes module."""
net = False
[docs]
def setUp(self):
"""Backup the current fixes."""
super().setUp()
self._old_fixes = fixes.fixes
[docs]
def tearDown(self):
"""Recover the current fixes."""
fixes.fixes = self._old_fixes
super().tearDown()
[docs]
def test_overwrite_value(self):
"""Test loading a fix file overwriting the fixes."""
fixes.fixes = {}
old_fixes = fixes.fixes
fixes._load_file(join_data_path('set-fixes.py'))
self.assertIsNot(fixes.fixes, old_fixes)
[docs]
def test_update_value(self):
"""Test loading a fix file changing the fixes."""
fixes.fixes = {}
old_fixes = fixes.fixes
fixes._load_file(join_data_path('fixes.py'))
self.assertIs(fixes.fixes, old_fixes)
if __name__ == '__main__': # pragma: no cover
with suppress(SystemExit):
unittest.main()