예제 #1
0
def check_is_sorted(sequence, kwargs, result):
    eq_(is_sorted(sequence, **kwargs), result)
예제 #2
0
def test_is_sorted_fails_on_dictionaries():
    is_sorted({})
예제 #3
0
def test_is_sorted_fails_on_sets():
    is_sorted(set())
예제 #4
0
def test_is_sorted_fails_on_dictionaries():
    is_sorted({})
예제 #5
0
def test_is_sorted_fails_on_sets():
    is_sorted(set())
예제 #6
0
def check_is_sorted(sequence, kwargs, result):
    eq_(is_sorted(sequence, **kwargs), result)