Files
leadchat/spec/factories/users.rb
Emil Shakirov 4768aca484 Refactor Conversation model (#134)
* 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
2019-10-12 23:38:41 +05:30

15 lines
288 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :user do
provider { 'email' }
uid { SecureRandom.uuid }
name { 'John Smith' }
nickname { 'jsmith' }
email { 'john.smith@example.com' }
role { 'agent' }
password { "password" }
account
end
end