mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
21 lines
638 B
Ruby
21 lines
638 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rails_helper"
|
|
|
|
describe PostAction do
|
|
|
|
it "triggers the 'flag_reviewed' event when there was at least one flag" do
|
|
admin = Fabricate(:admin)
|
|
|
|
post = Fabricate(:post)
|
|
events = DiscourseEvent.track_events { PostDestroyer.new(admin, post).destroy }
|
|
expect(events.map { |e| e[:event_name] }).to_not include(:flag_reviewed)
|
|
|
|
flagged_post = Fabricate(:post)
|
|
PostActionCreator.spam(admin, flagged_post)
|
|
events = DiscourseEvent.track_events { PostDestroyer.new(admin, flagged_post).destroy }
|
|
expect(events.map { |e| e[:event_name] }).to include(:flag_reviewed)
|
|
end
|
|
|
|
end
|