Ejemplo n.º 1
0
def test_split_one_integer():
	assert split("i0e") == ["i0e"]
Ejemplo n.º 2
0
def test_empty_string():
	assert split("") == []
Ejemplo n.º 3
0
def test_split_list_string():
	assert split("lle4:spame") == ["le4:spam"]
Ejemplo n.º 4
0
def test_split_multiple_nested_lists():
	assert split("llllleeeee") == ["lllleeee"]
Ejemplo n.º 5
0
def test_split_list():
	assert split("llee") == ["le"]
Ejemplo n.º 6
0
def test_split_two_strings():
	assert split("4:spam4:spam") == ["4:spam", "4:spam"]