Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/experiments')
-rw-r--r--spec/experiments/application_experiment_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/experiments/application_experiment_spec.rb b/spec/experiments/application_experiment_spec.rb
index 0a46155b56d..2481ee5a806 100644
--- a/spec/experiments/application_experiment_spec.rb
+++ b/spec/experiments/application_experiment_spec.rb
@@ -58,6 +58,15 @@ RSpec.describe ApplicationExperiment, :experiment do
end
describe "publishing results" do
+ it "doesn't track or push data to the client if we shouldn't track", :snowplow do
+ allow(subject).to receive(:should_track?).and_return(false)
+ expect(Gon).not_to receive(:push)
+
+ subject.publish(:action)
+
+ expect_no_snowplow_event
+ end
+
it "tracks the assignment" do
expect(subject).to receive(:track).with(:assignment)