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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-18 00:09:56 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-18 00:09:56 +0300
commit9facfe5cb194005894467c06e4ea1a9800034ab4 (patch)
tree5ceaecd5f89725250bbf4119558715fa14576c4c /spec/factories/raw_usage_data.rb
parent18da92341dac366b7bcfd13f2d3c443ffa315af0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/raw_usage_data.rb')
-rw-r--r--spec/factories/raw_usage_data.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/factories/raw_usage_data.rb b/spec/factories/raw_usage_data.rb
new file mode 100644
index 00000000000..e0ef357fdbd
--- /dev/null
+++ b/spec/factories/raw_usage_data.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+FactoryBot.define do
+ factory :raw_usage_data do
+ recorded_at { Time.current }
+ payload { { test: 'test' } }
+ end
+end