2015-09-25 12:07:36 +05:30
|
|
|
# == 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-09-11 14:41:01 +05:30
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AbuseReport, type: :model do
|
|
|
|
subject { create(:abuse_report) }
|
|
|
|
|
|
|
|
it { expect(subject).to be_valid }
|
|
|
|
end
|