Newer
Older
dmpopidor / spec / support / faker.rb
@Bodacious Bodacious on 27 Jul 2018 198 bytes Add specs for all models
require 'faker'

LOCALE = 'en_GB'

RSpec.configure do |config|
  config.before(:each) do
    I18n.locale = LOCALE
    Faker::Config.locale = LOCALE
    FastGettext.default_locale = LOCALE
  end
end