docbrown/spec/factories/html_variants.rb
Ben Halpern a53de929fe
[deploy] Remove sidebar variant from CTA (#8040)
* Remove sidebar variant from CTA

* Remove unneeded tests

* Modify algo *just a bit*
2020-05-23 13:35:43 -04:00

9 lines
287 B
Ruby

FactoryBot.define do
factory :html_variant do
user
name { Faker::Hipster.paragraph(sentence_count: 1) }
html { "<div>#{rand(10_000_000_000)}</div><h1>HEllo</h1>" }
success_rate { 0.3 }
group { "article_show_below_article_cta" }
end
end