import pytest | |
from core.tools.utils.text_processing_utils import remove_leading_symbols | |
def test_remove_leading_symbols(input_text, expected_output): | |
assert remove_leading_symbols(input_text) == expected_output | |
import pytest | |
from core.tools.utils.text_processing_utils import remove_leading_symbols | |
def test_remove_leading_symbols(input_text, expected_output): | |
assert remove_leading_symbols(input_text) == expected_output | |