Module: RSpecPower::I18nHelpers
- Defined in:
- lib/rspec_power/i18n.rb
Instance Method Summary collapse
Instance Method Details
#with_locale(locale) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/rspec_power/i18n.rb', line 3 def with_locale(locale) old = I18n.locale I18n.locale = locale yield ensure I18n.locale = old end |