Ejemplo n.º 1
0
 def test_empty():
     assert get_smallest([]) is None
Ejemplo n.º 2
0
 def test_all_equals():
     assert get_smallest([4] * 100) is 4
Ejemplo n.º 3
0
 def test_many():
     assert get_smallest(ordered_list) is 1
Ejemplo n.º 4
0
 def test_disordered():
     assert get_smallest(disordered_list) is -2
Ejemplo n.º 5
0
 def test_single():
     assert get_smallest([1]) is 1