* First draft - all the big changes * Changing some more references to 'internal' * Relocate internal request tests to admin * Relocate internal system tests to admin * Fix trailing space * Test fix * Move queries from internal to admin * Docs updates * Rename internal stimuls controllers to admin (plus docs) * Rename admin layout * Fix routing after rebase * Fixes for latest added admin interfaces * Serviceworker ignore paths
8 lines
258 B
Ruby
8 lines
258 B
Ruby
require "rails_helper"
|
|
require "requests/shared_examples/internal_policy_dependant_request"
|
|
|
|
RSpec.describe "/admin/pages", type: :request do
|
|
it_behaves_like "an InternalPolicy dependant request", Page do
|
|
let(:request) { get "/admin/pages" }
|
|
end
|
|
end
|