mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 03:38:05 +08:00
DEV: Apply syntax_tree formatting to spec/*
This commit is contained in:
@ -1,17 +1,22 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe ClicksController do
|
||||
|
||||
let(:url) { "https://discourse.org/" }
|
||||
let(:headers) { { REMOTE_ADDR: "192.168.0.1" } }
|
||||
let(:post_with_url) { create_post(raw: "this is a post with a link #{url}") }
|
||||
|
||||
describe '#track' do
|
||||
describe "#track" do
|
||||
it "creates a TopicLinkClick" do
|
||||
sign_in(Fabricate(:user))
|
||||
|
||||
expect {
|
||||
post "/clicks/track", params: { url: url, post_id: post_with_url.id, topic_id: post_with_url.topic_id }, headers: headers
|
||||
post "/clicks/track",
|
||||
params: {
|
||||
url: url,
|
||||
post_id: post_with_url.id,
|
||||
topic_id: post_with_url.topic_id,
|
||||
},
|
||||
headers: headers
|
||||
}.to change { TopicLinkClick.count }.by(1)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user