(self, _Font_)
| 108 | |
| 109 | @pytest.fixture |
| 110 | def iter_fixture(self, _Font_): |
| 111 | directory = test_file_dir |
| 112 | font_file_path = testfile("calibriz.ttf") |
| 113 | font = _Font_.open.return_value.__enter__.return_value |
| 114 | font.family_name, font.is_bold, font.is_italic = "Arial", True, True |
| 115 | expected_calls = [call(font_file_path)] |
| 116 | expected_paths = [(("Arial", True, True), font_file_path)] |
| 117 | return directory, _Font_, expected_calls, expected_paths |
| 118 | |
| 119 | @pytest.fixture |
| 120 | def osx_dirs_fixture(self, request): |
nothing calls this directly
no test coverage detected