mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
FIX: Look up a url without the query string if it couldn't be found with it.
This commit is contained in:
parent
26e75c5ceb
commit
06e9cbc6cb
2 changed files with 13 additions and 0 deletions
|
@ -28,7 +28,14 @@ describe ClicksController do
|
|||
xhr :get, :track, url: 'http://discourse.org', post_id: 123
|
||||
response.should_not be_redirect
|
||||
end
|
||||
end
|
||||
|
||||
context "with a query string" do
|
||||
it "tries again without the query if it fails" do
|
||||
TopicLinkClick.expects(:create_from).with(has_entries('url' => 'http://discourse.org/?hello=123')).returns(nil)
|
||||
TopicLinkClick.expects(:create_from).with(has_entries('url' => 'http://discourse.org/')).returns(nil)
|
||||
xhr :get, :track, url: 'http://discourse.org/?hello=123', post_id: 123
|
||||
end
|
||||
end
|
||||
|
||||
context 'with a post_id' do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue