* Renamed stuff related to display_ad_events (except the model) * Updated user billboard_events association spec * Fixed display_ad_event factory
7 lines
192 B
Ruby
7 lines
192 B
Ruby
FactoryBot.define do
|
|
factory :display_ad_event do
|
|
category { DisplayAdEvent::CATEGORY_IMPRESSION }
|
|
context_type { "home" }
|
|
association :billboard, factory: :display_ad
|
|
end
|
|
end
|