mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
9 lines
184 B
Ruby
9 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
|