discourse/spec/lib/i18n/i18n_interpolation_keys_finder_spec.rb
Loïc Guitaut 008b700a3f DEV: Upgrade to Rails 7
This patch upgrades Rails to version 7.0.2.4.
2022-04-28 11:51:03 +02:00

11 lines
270 B
Ruby

# frozen_string_literal: true
RSpec.describe I18nInterpolationKeysFinder do
describe '#find' do
it 'should return the right keys' do
expect(described_class.find('%{first} %{second} {{third}}'))
.to eq(['first', 'second', 'third'])
end
end
end