2015-09-06 10:48:48 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: abuse_reports
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# reporter_id :integer
|
|
|
|
# user_id :integer
|
|
|
|
# message :text
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
2015-08-06 08:03:27 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AbuseReport, type: :model do
|
|
|
|
subject { create(:abuse_report) }
|
|
|
|
|
|
|
|
it { expect(subject).to be_valid }
|
2015-09-29 12:08:55 -04:00
|
|
|
|
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:reporter).class_name('User') }
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:reporter) }
|
|
|
|
it { is_expected.to validate_presence_of(:user) }
|
|
|
|
it { is_expected.to validate_presence_of(:message) }
|
|
|
|
it { is_expected.to validate_uniqueness_of(:user_id) }
|
|
|
|
end
|
2015-08-06 08:03:27 -04:00
|
|
|
end
|