# This test code was written by the `hypothesis.extra.ghostwriter` module
# and is provided under the Creative Commons Zero public domain dedication.

import test_expected_output
from hypothesis import given, reject, strategies as st


@given(a=st.integers(), b=st.integers())
def test_fuzz_divide(a, b):
    try:
        test_expected_output.divide(a=a, b=b)
    except ZeroDivisionError:
        reject()
