# frozen_string_literal: true FactoryBot.define do factory :repository_text_value do created_by { create :user } last_modified_by { created_by } data { Faker::Lorem.paragraph } after(:build) do |repository_text_value| repository_text_value.repository_cell ||= build(:repository_cell, :text_value, repository_text_value: repository_text_value) end end end