コード例 #1
0
def test_split_times_splits_times_into_list():
    times = split_times(200)
    assert len(times) > 1
コード例 #2
0
def test_splits_times_adds_odd_time_to_first_portion():
    times = split_times(206)
    assert times[0] == 26
コード例 #3
0
def test_splits_times_into_twenty_second_chunks():
    times = split_times(200)
    assert len(times) == 10
コード例 #4
0
def test_splits_times_into_twenty_second_chunks():
    times = split_times(200)
    assert len(times) == 10
コード例 #5
0
def test_split_times_splits_times_into_list():
    times = split_times(200)
    assert len(times) > 1
コード例 #6
0
def test_splits_times_adds_odd_time_to_first_portion():
    times = split_times(206)
    assert times[0] == 26