blob: 59a2eddfb74940083e56a6006fb54031ab6398d1 [file] [log] [blame]
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
"""Test that the directory structure of the functional tests is correct."""
from pathlib import Path
from pylint.testutils.functional.find_functional_tests import (
get_functional_test_files_from_directory,
)
def test_directories() -> None:
"""Test that the directory structure of the functional tests is correct."""
functional_dir = Path(__file__).parent / "functional"
get_functional_test_files_from_directory(functional_dir)