Sha256: c11123cc2a9d398c062f6c381d3749da7040f1434ba15539cec24e8aed822b31
Contents?: true
Size: 919 Bytes
Versions: 4
Compression:
Stored size: 919 Bytes
Contents
FactoryBot.define do factory :insights_facet do # sequence(:uuid) { |n| "uuid-#{n}" } trait :with_hits do hits do Array.new(1) { association(:insights_hit, host_id: host_id) } end end end factory :insights_hit do last_seen { DateTime.yesterday } sequence(:title) { |n| "hit title #{n}" } sequence(:solution_url) { |n| "http://example.com/solutions/#{n}" } total_risk { 1 } likelihood { 2 } publish_date { DateTime.now } sequence(:results_url) { |n| "https://cloud.redhat.com/insights/overview/stability/test_rule%7CTEST_RULE/accdf444-5628-451d-bf3e-cf909ad7275#{n}/" } rule_id { "test_rule|TEST_RULE" } end end FactoryBot.modify do factory :host do trait :with_insights_hits do after(:create) do |host, _evaluator| host.insights = FactoryBot.create(:insights_facet, :with_hits, host_id: host.id) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems