mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
14 lines
330 B
Ruby
14 lines
330 B
Ruby
Fabricator(:site_text) do
|
|
text_type "great.poem"
|
|
value "%{flower} are red. %{food} are blue."
|
|
end
|
|
|
|
Fabricator(:site_text_basic, from: :site_text) do
|
|
text_type "breaking.bad"
|
|
value "best show ever"
|
|
end
|
|
|
|
Fabricator(:site_text_site_setting, from: :site_text) do
|
|
text_type "site.replacement"
|
|
value "%{title} is evil."
|
|
end
|