From 891ca116575fb0633bf82005d2117a7633ad51a3 Mon Sep 17 00:00:00 2001 From: compwron Date: Wed, 7 Feb 2024 13:03:49 -0800 Subject: [PATCH] fill in spec (#5514) --- spec/models/user_sms_notification_event_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/models/user_sms_notification_event_spec.rb b/spec/models/user_sms_notification_event_spec.rb index 1f1616a90e..c5e137549a 100644 --- a/spec/models/user_sms_notification_event_spec.rb +++ b/spec/models/user_sms_notification_event_spec.rb @@ -1,5 +1,6 @@ require "rails_helper" RSpec.describe UserSmsNotificationEvent, type: :model do - pending "add some examples to (or delete) #{__FILE__}" + it { is_expected.to belong_to(:user) } + it { is_expected.to belong_to(:sms_notification_event) } end