* Add stripe policies and specs, and some refactor * Update moderation test to test for 404
48 lines
1.2 KiB
Ruby
48 lines
1.2 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Moderations", type: :request do
|
|
let(:user) { create(:user) }
|
|
let(:article) { create(:article, user_id: user.id) }
|
|
let(:comment) do
|
|
create(:comment,
|
|
commentable_id: article.id,
|
|
commentable_type: "Article",
|
|
user_id: user.id)
|
|
end
|
|
|
|
describe "GET /mod on articles" do
|
|
context "when user is trusted" do
|
|
it "responds with 200" do
|
|
user.add_role :trusted
|
|
sign_in user
|
|
get article.path + "/mod"
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
context "when user is not trusted", proper_status: true do
|
|
it "responds with 404" do
|
|
get article.path + "/mod"
|
|
expect(response).to have_http_status(404)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "GET moderations comment" do
|
|
context "when user is trusted" do
|
|
it "responds with 200" do
|
|
user.add_role :trusted
|
|
sign_in user
|
|
get comment.path + "/mod"
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
context "when user is not trusted", proper_status: true do
|
|
it "responds with 404" do
|
|
get comment.path + "/mod"
|
|
expect(response).to have_http_status(404)
|
|
end
|
|
end
|
|
end
|
|
end
|