mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:29:22 +08:00
d2596c3c4c
boolean to avoid locking yourself out by setting access_password to empty string. Minor UI tweaks.
28 lines
763 B
Ruby
28 lines
763 B
Ruby
require 'spec_helper'
|
|
|
|
describe RobotsTxtController do
|
|
|
|
context '.index' do
|
|
|
|
it "returns index when indexing is allowed" do
|
|
SiteSetting.stubs(:allow_index_in_robots_txt).returns(true)
|
|
get :index
|
|
response.should render_template :index
|
|
end
|
|
|
|
it "returns noindex when indexing is disallowed" do
|
|
SiteSetting.stubs(:allow_index_in_robots_txt).returns(false)
|
|
get :index
|
|
response.should render_template :no_index
|
|
end
|
|
|
|
it "serves noindex when in private mode regardless of the configuration" do
|
|
SiteSetting.stubs(:allow_index_in_robots_txt).returns(true)
|
|
SiteSetting.stubs(:access_password).returns('adventure time!')
|
|
get :index
|
|
response.should render_template :no_index
|
|
end
|
|
|
|
end
|
|
end
|