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/lib/generators/batched_background_migration/expected_files/foss_my_batched_migration.txt')
-rw-r--r--spec/lib/generators/batched_background_migration/expected_files/foss_my_batched_migration.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/lib/generators/batched_background_migration/expected_files/foss_my_batched_migration.txt b/spec/lib/generators/batched_background_migration/expected_files/foss_my_batched_migration.txt
new file mode 100644
index 00000000000..7c2e1f4fc04
--- /dev/null
+++ b/spec/lib/generators/batched_background_migration/expected_files/foss_my_batched_migration.txt
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module BackgroundMigration
+ # TODO Add a top-level documentation comment for the class
+ class MyBatchedMigration < BatchedMigrationJob
+ feature_category :database
+
+ def perform; end
+ end
+ end
+end
+
+Gitlab::BackgroundMigration::MyBatchedMigration.prepend_mod