示例#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)