Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Docs: 'import factory.fuzzy' as required (See #138). | Raphaël Barrois | 2015-07-25 |
| | |||
* | Fix typo in docs/fuzzy (Closes #207). | Raphaël Barrois | 2015-05-20 |
| | | | | Thanks to @nikolas for spotting it! | ||
* | Allow lazy evaluation of FuzzyChoice's iterators (Closes #184). | Raphaël Barrois | 2015-03-26 |
| | | | | | | | | | This allows the following idiom: ``user = factory.fuzzy.FuzzyChoice(User.objects.all())`` Previously, the ``User.objects.all()`` queryset would have been evaluated *at import time*; it is now evaluated with the first use of the ``FuzzyChoice``. | ||
* | Enable resetting factory.fuzzy's random generator (Closes #175, #185). | Raphaël Barrois | 2015-02-18 |
| | | | | | | | | | Users may now call ``factory.fuzzy.get_random_state()`` to retrieve the current random generator's state (isolated from the one used in Python's ``random``). That state can then be reinjected with ``factory.fuzzy.set_random_state(state)``. | ||
* | fuzzy: Add FuzzyFloat (Closes #124). | Raphaël Barrois | 2014-01-22 |
| | | | | As suggested by @savingschampion | ||
* | Document FuzzyInteger.step | Raphaël Barrois | 2013-12-30 |
| | |||
* | Style fixes for FuzzyDecimal (Closes #94). | Raphaël Barrois | 2013-10-29 |
| | |||
* | Added a Fuzzy Decimal attribute. | Omer | 2013-10-29 |
| | |||
* | Added FuzzyText attribute. | Jon Dufresne | 2013-10-29 |
| | | | | Useful for unique model attributes where the specific value can be fuzzy. | ||
* | Add FuzzyDateTime/FuzzyNaiveDateTime. | Raphaël Barrois | 2013-04-21 |
| | |||
* | Add FuzzyDate | Saul Shanabrook | 2013-04-21 |
| | | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org> | ||
* | Add factory.fuzzy (Closes #41). | Raphaël Barrois | 2013-04-11 |