mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 19:44:59 +08:00
8 lines
184 B
Ruby
8 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:post_revision) do
|
|
post
|
|
user
|
|
number 2
|
|
modifications { { "cooked" => %w[<p>BEFORE</p> <p>AFTER</p>], "raw" => %w[BEFORE AFTER] } }
|
|
end
|