(isatty, version, terminal_processing)
| 64 | @mock.patch("platform.version") |
| 65 | @mock.patch("sys.stdout.isatty") |
| 66 | def test_pformat_windows(isatty, version, terminal_processing): |
| 67 | isatty.return_value = True |
| 68 | version.return_value = "10.0.14393" |
| 69 | terminal_processing.return_value = True |
| 70 | assert pformat(value) in colorized_strings |
| 71 | |
| 72 | |
| 73 | @mock.patch("sys.platform", "linux") |