* Rubocop fixes in spec/requests * Fixed spec/requests/api/v0/articles_spec.rb Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com> Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com>
8 lines
269 B
Ruby
8 lines
269 B
Ruby
require "rails_helper"
|
|
require "requests/shared_examples/internal_policy_dependant_request"
|
|
|
|
RSpec.describe "/admin/content_manager/comments" do
|
|
it_behaves_like "an InternalPolicy dependant request", Comment do
|
|
let(:request) { get admin_comments_path }
|
|
end
|
|
end
|