discourse/spec/models/reviewable_claimed_topic_spec.rb
Robin Ward dcbe527a82 FIX: Don't log a claimed topic database error during tests
We now test the uniqueness validation, but also rescue a DB
exception in case the controller fails this check.
2020-01-09 12:32:05 -05:00

18 lines
436 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe ReviewableClaimedTopic, type: :model do
it "respects the uniqueness constraint" do
topic = Fabricate(:topic)
ct = ReviewableClaimedTopic.new(topic_id: topic.id, user_id: Fabricate(:user).id)
expect(ct.save).to eq(true)
ct = ReviewableClaimedTopic.new(topic_id: topic.id, user_id: Fabricate(:user).id)
expect(ct.save).to eq(false)
end
end