Exemplo n.º 1
0
 def test_exception(self, value, separator, is_include_matched_line, is_strip, expected):
     with pytest.raises(expected):
         split_line_list(
             value, separator, is_include_matched_line, is_strip)
Exemplo n.º 2
0
 def test_exception(self, value, separator, is_include_matched_line, is_strip, expected):
     with pytest.raises(expected):
         split_line_list(value, separator, is_include_matched_line, is_strip)
Exemplo n.º 3
0
 def test_normal(self, value, separator, is_include_matched_line, is_strip, expected):
     assert split_line_list(
         value, separator, is_include_matched_line, is_strip) == expected
Exemplo n.º 4
0
 def test_normal(self, value, separator, is_include_matched_line, is_strip, expected):
     assert split_line_list(value, separator, is_include_matched_line, is_strip) == expected