Ejemplo n.º 1
0
 def wrapper():
     lst = snippet.call_five()
     res = list((len(lst), lst[0]))
     expected = [1, 5]
     return res == expected
Ejemplo n.º 2
0
 def wrapper():
     lst = snippet.call_five()
     return len(lst), lst[0]
Ejemplo n.º 3
0
 def wrapper():
     lst = snippet.call_five()
     return len(lst), lst[0]
Ejemplo n.º 4
0
 def wrapper():
     lst = snippet.call_five()
     res = list((len(lst), lst[0]))
     expected = [1, 5]
     return res == expected