mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
12 lines
290 B
Ruby
12 lines
290 B
Ruby
|
require 'rails_helper'
|
||
|
require "i18n/i18n_interpolation_keys_finder"
|
||
|
|
||
|
RSpec.describe I18nInterpolationKeysFinder do
|
||
|
describe '#find' do
|
||
|
it 'should return the right keys' do
|
||
|
expect(described_class.find('%{first} %{second}'))
|
||
|
.to eq(['first', 'second'])
|
||
|
end
|
||
|
end
|
||
|
end
|