コード例 #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
ファイル: itertools.py プロジェクト: aschmolck/smk_python_sdk
def test_is_sorted_fails_on_dictionaries():
    is_sorted({})
コード例 #5
0
ファイル: itertools.py プロジェクト: aschmolck/smk_python_sdk
def test_is_sorted_fails_on_sets():
    is_sorted(set())
コード例 #6
0
ファイル: itertools.py プロジェクト: aschmolck/smk_python_sdk
def check_is_sorted(sequence, kwargs, result):
    eq_(is_sorted(sequence, **kwargs), result)