dawarich/spec/factories/notifications.rb

12 lines
187 B
Ruby
Raw Normal View History

2024-07-04 16:20:12 -04:00
# frozen_string_literal: true
FactoryBot.define do
factory :notification do
title { "MyString" }
content { "MyText" }
user
kind { :info }
read_at { nil }
end
end