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