5 ms·
The name looked familiar and it's indeed inspired by the Faker library for PHP: https://github.com/fzaninotto/Faker https://github.com/fzaninotto/Faker Another
by asm89 13y ago
The name looked familiar and it's indeed inspired by the Faker library for PHP:
https://github.com/fzaninotto/Faker https://github.com/fzaninotto/Faker
Another interesting library that is build on top of Faker is Alice. It allows you to define complex fixtures in .yml:
https://github.com/nelmio/alice https://github.com/nelmio/alice
- davidw 13y agoAren't they all kind of inspired by the original Perl implementation? I use the Ruby one for testing. Something kind of similar and worth thinking about is this: http://en.wikipedia.org/wiki/QuickCheck http://en.wikipedia.org/wiki/QuickCheck
- xzel 13y agoI was just about to comment the same thing about QuickCheck. Arbitrary data galore. I've only done serious work with QuickCheck in Haskell but here's the python implementation I've played with: https://pypi.python.org/pypi/pytest-quickcheck/ https://pypi.python.org/pypi/pytest-quickcheck/
- prakashk 13y ago> Aren't they all kind of inspired by the original Perl implementation? The original Perl implementation is Data::Faker (https://metacpan.org/pod/Data::Faker https://metacpan.org/pod/Data::Faker). The earliest version available on CPAN appears to be from 2005.