|
|
@ -33,11 +33,11 @@ def test_strip_regex_text_func():
|
|
|
|
|
|
|
|
|
|
|
|
stripped_content = html_tools.strip_ignore_text(test_content, ignore_lines)
|
|
|
|
stripped_content = html_tools.strip_ignore_text(test_content, ignore_lines)
|
|
|
|
|
|
|
|
|
|
|
|
assert b"but 1 lines" in stripped_content
|
|
|
|
assert "but 1 lines" in stripped_content
|
|
|
|
assert b"igNORe-cAse text" not in stripped_content
|
|
|
|
assert "igNORe-cAse text" not in stripped_content
|
|
|
|
assert b"but 1234 lines" not in stripped_content
|
|
|
|
assert "but 1234 lines" not in stripped_content
|
|
|
|
assert b"really" not in stripped_content
|
|
|
|
assert "really" not in stripped_content
|
|
|
|
assert b"not this" not in stripped_content
|
|
|
|
assert "not this" not in stripped_content
|
|
|
|
|
|
|
|
|
|
|
|
# Check line number reporting
|
|
|
|
# Check line number reporting
|
|
|
|
stripped_content = html_tools.strip_ignore_text(test_content, ignore_lines, mode="line numbers")
|
|
|
|
stripped_content = html_tools.strip_ignore_text(test_content, ignore_lines, mode="line numbers")
|
|
|
|