forked from e621ng/e621ng
19 lines
378 B
Ruby
19 lines
378 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
class PostApprovalsControllerTest < ActionDispatch::IntegrationTest
|
|
context "The post approvals controller" do
|
|
setup do
|
|
@approval = create(:post_approval)
|
|
end
|
|
|
|
context "index action" do
|
|
should "render" do
|
|
get post_approvals_path
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|
|
end
|