laracasts / TestDummy

Easy factories for PHP integration testing.
https://laracasts.com/lessons/whats-new-in-testdummy
MIT License
457 stars 80 forks source link

Faker Localization #99

Closed oliverasistemas closed 6 years ago

oliverasistemas commented 9 years ago

Is there any way of specifying a locale different from the default one ('en_US) from TestDummy?

enigmatic-user commented 9 years ago

Above the definition of the factory, you can use

$faker->locale('de_DE');

for setting the locale (I set it to a German locale in this case).

oliverasistemas commented 9 years ago

Thank you!