-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from barseghyanartur/dev
Fix/fixes (#57)
- Loading branch information
Showing
12 changed files
with
63 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
fake.py examples | ||
================ | ||
|
||
- `Customization <customization/README.rst>`_. | ||
- `Dataclasses <dataclasses/README.rst>`_. | ||
- `Django <django/README.rst>`_. | ||
- `Hypothesis <hypothesis/README.rst>`_. | ||
- `Lazy/Fuzzy <lazyfuzzy/README.rst>`_. | ||
- `Pydantic <pydantic/README.rst>`_. | ||
- `SQLAlchemy <sqlalchemy/README.rst>`_. | ||
- `TortoiseORM <tortoise/README.rst>`_. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Customization | ||
============= | ||
Various customization examples: | ||
|
||
- Address provider implementation. | ||
- Band provider implementation. | ||
- Replace built-in fake data corpus/vocabulary with a custom one. | ||
- Override default data. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Dataclasses | ||
=========== | ||
Example factories for models based on | ||
`dataclasses <https://docs.python.org/3/library/dataclasses.html>`_. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Django | ||
====== | ||
Example factories for `Django <https://www.djangoproject.com/>`_ models. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Hypothesis | ||
========== | ||
Additional tests using `hypothesis <https://hypothesis.readthedocs.io>`_. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Lazy/Fuzzy | ||
========== | ||
- A sample ``FuzzyChoice`` alternative implementation based on | ||
``LazyFunction`` and ``functools.partial``. | ||
- Various usage examples of ``LazyFunction`` and ``LazyAttribute``. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Pydantic | ||
======== | ||
Example factories for models based on `Pydantic <https://docs.pydantic.dev>`_. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SQLAlchemy | ||
========== | ||
Example factories for models based on `SQLAlchemy <https://sqlalchemy.org>`_. |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
TortoiseORM | ||
=========== | ||
Example factories for models based on | ||
`TortoiseORM <https://tortoise.github.io>`_. |
This file contains 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