mirror of
https://github.com/discourse/discourse.git
synced 2026-08-08 17:53:55 +08:00
9 lines
255 B
Ruby
Vendored
9 lines
255 B
Ruby
Vendored
# 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
|