debian-mirror-gitlab/spec/factories/user_statuses.rb

14 lines
211 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :user_status do
user
2019-12-21 20:55:43 +05:30
emoji { 'coffee' }
message { 'I crave coffee' }
2023-01-13 00:05:48 +05:30
trait :busy do
availability { 'busy' }
end
2018-11-18 11:00:15 +05:30
end
end