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

import re
import unittest
from hypothesis import given, strategies as st

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


class TestFuzzCompile(unittest.TestCase):
    @given(pattern=st.nothing(), flags=st.just(0))
    def test_fuzz_compile(self, pattern, flags):
        re.compile(pattern=pattern, flags=flags)
