Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6f8c8320e9eac9bc7a7f653b43506e75916ce8e8 authored by Ɓukasz Langa on 13 May 2020, 17:31:54 UTC
Python 3.8.3
Tip revision: 6f8c832
test_all_fixers.py
"""Tests that run all fixer modules over an input stream.

This has been broken out into its own test module because of its
running time.
"""
# Author: Collin Winter

# Python imports
import unittest
import test.support

# Local imports
from . import support


@test.support.requires_resource('cpu')
class Test_all(support.TestCase):

    def setUp(self):
        self.refactor = support.get_refactorer()

    def test_all_project_files(self):
        for filepath in support.all_project_files():
            self.refactor.refactor_file(filepath)

if __name__ == '__main__':
    unittest.main()
back to top