Welcome to mirror list, hosted at ThFree Co, Russian Federation.

abuse_report_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d83004a8388eefe1437e22db6027b4d009b99c6d (plain)
1
2
3
4
5
6
7
require 'rails_helper'

RSpec.describe AbuseReport, type: :model do
  subject { create(:abuse_report) }

  it { expect(subject).to be_valid }
end