mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:34:28 +08:00
10 lines
255 B
Ruby
10 lines
255 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(%w[first second third])
|
|
end
|
|
end
|
|
end
|