18 lines
396 B
Ruby
18 lines
396 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rails_helper"
|
|
|
|
describe RobotsTxtController do
|
|
before do
|
|
SiteSetting.docs_enabled = true
|
|
GlobalSetting.stubs(:docs_path).returns("docs")
|
|
end
|
|
|
|
it "adds /docs/ to robots.txt" do
|
|
get "/robots.txt"
|
|
|
|
expect(response.body).to include("User-agent: *")
|
|
expect(response.body).to include("Disallow: /#{GlobalSetting.docs_path}/")
|
|
end
|
|
end
|