27 lines
683 B
Ruby
27 lines
683 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: survey_replies
|
|
#
|
|
# id :bigint not null, primary key
|
|
# text :text
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# survey_question_id :integer
|
|
# user_id :integer
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe SurveyReply do
|
|
subject { create(:survey_reply) }
|
|
|
|
describe 'association' do
|
|
it { is_expected.to belong_to(:user) }
|
|
it { is_expected.to belong_to(:survey_question) }
|
|
end
|
|
|
|
describe 'validation' do
|
|
it { is_expected.to validate_uniqueness_of(:survey_question_id).scoped_to(:user_id) }
|
|
end
|
|
end
|