Sha256: 7cd8c1448ac78a704f3f735817683b60ea6ef3df020da51b220a60cf48393382
Contents?: true
Size: 729 Bytes
Versions: 15
Compression:
Stored size: 729 Bytes
Contents
# frozen_string_literal: true require "factory_bot" require "securerandom" FactoryBot.define do factory :meibo_demographic, class: "Meibo::Demographic" do initialize_with { new(**attributes) } transient do user { nil } end sourced_id { user&.sourced_id || SecureRandom.uuid } trait :jp do initialize_with { Meibo::JapanProfile::Demographic.new(**attributes) } end trait :male do sex { Meibo::Demographic::SEX[:male] } end trait :female do sex { Meibo::Demographic::SEX[:female] } end trait :unspecified do sex { Meibo::Demographic::SEX[:unspecified] } end trait :other do sex { Meibo::Demographic::SEX[:other] } end end end
Version data entries
15 entries across 15 versions & 1 rubygems