13 lines
211 B
Ruby
13 lines
211 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :csat_survey_response do
|
||
|
rating { 1 }
|
||
|
feedback_message { Faker::Movie.quote }
|
||
|
account
|
||
|
conversation
|
||
|
message
|
||
|
contact
|
||
|
end
|
||
|
end
|