Пример #1
0
def test_1_one_two_three():
  assert comma_separated(' one,two,three ') == ['one', 'two', 'three']
Пример #2
0
def test_7_():
  assert comma_separated('   ') == ['']
Пример #3
0
def test_5_one_two_three():
  assert comma_separated('one two three') == ['one two three']
Пример #4
0
def test_6_one_two_three():
  assert comma_separated('one;two;three') == ['one;two;three']
Пример #5
0
def test_4_():
  assert comma_separated(',,') == ['', '', '']