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