# This test code was written by the `hypothesis.extra.ghostwriter` module
# and is provided under the Creative Commons Zero public domain dedication.
from hypothesis import given, strategies as st


# TODO: replace st.nothing() with an appropriate strategy


@given(iterable=st.nothing(), key=st.none(), reverse=st.booleans())
def test_fuzz_sorted(iterable, key, reverse):
    sorted(iterable, key=key, reverse=reverse)
