Sha256: 83f047853fc4eddb2c9bf5dc80879375f9c0d821f6b57fb38caee48f8a1ce635
Contents?: true
Size: 356 Bytes
Versions: 15
Compression:
Stored size: 356 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :internal_message, class: "Renalware::Messaging::Internal::Message" do body { "The body" } subject { "The subject" } urgent { false } association :author, factory: :author sent_at { Time.zone.now } association :patient public { true } receipts { [] } end end
Version data entries
15 entries across 15 versions & 1 rubygems