Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_statuses.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79dc1eb7931ca62ff03104535e1a8d5262986a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

FactoryBot.define do
  factory :user_status do
    user
    emoji { 'coffee' }
    message { 'I crave coffee' }

    trait :busy do
      availability { 'busy' }
    end
  end
end