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)
Example #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)
 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
Example #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