diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-13 10:55:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-13 10:55:06 +0000 |
commit | 747011e0097c24208f77f9897601c76190fbc52e (patch) | |
tree | b27ccfc173eaa7e3b9ab7e7b75ba005d4443bd6b /tests | |
parent | Adding upstream version 2.5.36. (diff) | |
download | identify-upstream/2.6.0.tar.xz identify-upstream/2.6.0.zip |
Adding upstream version 2.6.0.upstream/2.6.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/identify_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/identify_test.py b/tests/identify_test.py index bb8aba5..c0e5410 100644 --- a/tests/identify_test.py +++ b/tests/identify_test.py @@ -325,6 +325,8 @@ def test_file_is_text_does_not_exist(tmpdir): (b'#!\x00\x00\x00\x00', ()), # shebang lines with multiple arguments (b'#!/usr/bin/env -S python -u', ('python', '-u')), + (b'#!/usr/bin/env', ()), + (b'#!/usr/bin/env -S', ()), ), ) def test_parse_shebang(s, expected): |