From c86df75ab11643fa4649cfe6ed5c4692d4ee342b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 20:05:20 +0200 Subject: Adding upstream version 3.6.2. Signed-off-by: Daniel Baumann --- tests/output_test.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/output_test.py (limited to 'tests/output_test.py') diff --git a/tests/output_test.py b/tests/output_test.py new file mode 100644 index 0000000..c806829 --- /dev/null +++ b/tests/output_test.py @@ -0,0 +1,11 @@ +from __future__ import annotations + +import io + +from pre_commit import output + + +def test_output_write_writes(): + stream = io.BytesIO() + output.write('hello world', stream) + assert stream.getvalue() == b'hello world' -- cgit v1.2.3