mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 12:24:55 +00:00
11 lines
270 B
Ruby
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
|