def test_symbol_percentage(self): analyzer = TextAnalyzer() text = "asd% Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_upper_interrogation(self): analyzer = TextAnalyzer() text = "asd? Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_upper_exclamation(self): analyzer = TextAnalyzer() text = "asd! Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_string_stopword_string(self): analyzer = TextAnalyzer() text = "asd upon asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_low_bar(self): analyzer = TextAnalyzer() text = "asd_ Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_string_lower_string_capitalized(self): analyzer = TextAnalyzer() text = "asd ASD" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_almohadilla(self): analyzer = TextAnalyzer() text = "asd# Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_slash(self): analyzer = TextAnalyzer() text = "asd/ Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_arroba(self): analyzer = TextAnalyzer() text = "asd@ Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_doc_and_coma(self): analyzer = TextAnalyzer() text = "asd; Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_double_points(self): analyzer = TextAnalyzer() text = "asd: Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_coma(self): analyzer = TextAnalyzer() text = "asd," text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd"]
def test_semi_capitalized_strings(self): analyzer = TextAnalyzer() text = "Asd AsD" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_numbers_between_letters(self): analyzer = TextAnalyzer() text = "as1d2As3d" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asdasd"]
def test_symbol_numbers(self): analyzer = TextAnalyzer() text = "asd 1234asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]
def test_symbol_parenthesis(self): analyzer = TextAnalyzer() text = "asd() Asd" text = TextAnalyzer.prepare_text(analyzer, text) assert text == ["asd", "asd"]