4768aca484
* Add Conversation factory with dependent factories * Include FactoryBot methods in rspec config * Add unit tests for public methods of Conversation model * Move Current model into a separate file in lib folder * Disable Metrics/BlockLength rule for db/migrate and spec folders * Get rid of global $dispatcher variable * Create Message#unread_since scope * Refactor callback methods in Conversation model * Create Conversations::EventDataPresenter * Add translation keys for activity messages * Add pry-rails gem * Refactor Conversation#notify_status_change * Add mock_redis for test env
16 lines
307 B
Ruby
16 lines
307 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :contact do
|
|
sequence(:name) { |n| "Widget #{n}" }
|
|
sequence(:email) { |n| "widget-#{n}@example.com" }
|
|
phone_number { "+123456789011" }
|
|
source_id { rand(100) }
|
|
chat_channel { "chat_channel" }
|
|
account
|
|
inbox
|
|
end
|
|
end
|
|
|
|
|
|
|