3e9bb4ad31
There is nothing more to say but "Commits that change 30 or more lines across at least three files must describe these changes in the commit body"
27 lines
721 B
Ruby
27 lines
721 B
Ruby
require 'spec_helper'
|
|
|
|
describe Admin::AbuseReportsController, '(JavaScript fixtures)', type: :controller do
|
|
include JavaScriptFixturesHelpers
|
|
|
|
let(:admin) { create(:admin) }
|
|
let!(:abuse_report) { create(:abuse_report) }
|
|
let!(:abuse_report_with_short_message) { create(:abuse_report, message: 'SHORT MESSAGE') }
|
|
let!(:abuse_report_with_long_message) { create(:abuse_report, message: "LONG MESSAGE\n" * 50) }
|
|
|
|
render_views
|
|
|
|
before(:all) do
|
|
clean_frontend_fixtures('abuse_reports/')
|
|
end
|
|
|
|
before do
|
|
sign_in(admin)
|
|
end
|
|
|
|
it 'abuse_reports/abuse_reports_list.html' do |example|
|
|
get :index
|
|
|
|
expect(response).to be_success
|
|
store_frontend_fixture(response, example.description)
|
|
end
|
|
end
|