FIX: Correct user profile URLs in /about crawler view

This commit is contained in:
David Taylor
2020-07-14 16:09:27 +01:00
parent 9917b9cb21
commit cc6d722de1
2 changed files with 11 additions and 4 deletions

View File

@@ -35,6 +35,13 @@ describe AboutController do
expect(response.status).to eq(200)
expect(response.body).to include("<title>About - Discourse</title>")
end
it "should include correct user URLs" do
Fabricate(:admin, username: "anAdminUser")
get '/about', headers: { 'HTTP_USER_AGENT' => 'Googlebot' }
expect(response.status).to eq(200)
expect(response.body).to include("/u/anadminuser")
end
end
it "serializes stats when 'Guardian#can_see_about_stats?' is true" do