()
| 58 | |
| 59 | |
| 60 | def test_default_project_settings() -> None: |
| 61 | s = default_project_settings() |
| 62 | assert s.include_patterns == DEFAULT_INCLUDED_PATTERNS |
| 63 | assert s.exclude_patterns == DEFAULT_EXCLUDED_PATTERNS |
| 64 | assert s.language_overrides == [] |
| 65 | |
| 66 | |
| 67 | @pytest.mark.usefixtures("_patch_user_dir") |
nothing calls this directly
no test coverage detected