2015-10-11 04:41:23 -05:00
|
|
|
require 'rails_helper'
|
2013-02-10 18:02:57 -06:00
|
|
|
|
|
|
|
describe RobotsTxtController do
|
|
|
|
|
|
|
|
context '.index' do
|
2013-02-25 16:58:16 -06:00
|
|
|
|
|
|
|
it "returns index when indexing is allowed" do
|
2015-06-03 05:14:00 -05:00
|
|
|
SiteSetting.allow_index_in_robots_txt = true
|
2013-02-10 18:02:57 -06:00
|
|
|
get :index
|
2015-01-09 11:04:02 -06:00
|
|
|
expect(response).to render_template :index
|
2013-02-10 18:02:57 -06:00
|
|
|
end
|
|
|
|
|
2013-02-26 09:42:49 -06:00
|
|
|
it "returns noindex when indexing is disallowed" do
|
2015-06-03 05:14:00 -05:00
|
|
|
SiteSetting.allow_index_in_robots_txt = false
|
2013-02-10 18:02:57 -06:00
|
|
|
get :index
|
2015-01-09 11:04:02 -06:00
|
|
|
expect(response).to render_template :no_index
|
2013-02-25 10:42:20 -06:00
|
|
|
end
|
|
|
|
|
2013-02-10 18:02:57 -06:00
|
|
|
end
|
|
|
|
end
|