Last active
May 11, 2020 15:32
-
-
Save 4OH4/e9379673b640785fc5cb46dc3a535ba3 to your computer and use it in GitHub Desktop.
Hypothesis text generation - example output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Show some generated text examples | |
from hypothesis.strategies import text | |
for _ in range(10): | |
text().example() | |
# '' | |
# '\x17\x14' | |
# '\x1d\x08' | |
# '(\U000adacd\x0e\x02\x1e' | |
# '\U00013c7b\x1f\x16\r\U0007433d' | |
# '0' | |
# '\U0005cc1b' | |
# '&\t' | |
# '\U000bc657\U000740e4' | |
# '0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment