Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
d1eac99b
Commit
d1eac99b
authored
Feb 07, 2018
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the :migration metadata in migration specs
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
4af914c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
spec/lib/gitlab/background_migration/populate_untracked_uploads_spec.rb
...b/background_migration/populate_untracked_uploads_spec.rb
+6
-1
spec/support/db_cleaner.rb
spec/support/db_cleaner.rb
+0
-4
No files found.
spec/lib/gitlab/background_migration/populate_untracked_uploads_spec.rb
View file @
d1eac99b
require
'spec_helper'
require
'spec_helper'
describe
Gitlab
::
BackgroundMigration
::
PopulateUntrackedUploads
,
:sidekiq
,
:delete_no_cache
do
# This migration is using UploadService, which sets uploads.secret that is only
# added to the DB schema in 20180129193323. Since the test isn't isolated, we
# just use the latest schema when testing this migration.
# Ideally, the test should not use factories nor UploadService, and rely on the
# `table` helper instead.
describe
Gitlab
::
BackgroundMigration
::
PopulateUntrackedUploads
,
:sidekiq
,
:migration
,
schema:
20180129193323
do
include
TrackUntrackedUploadsHelpers
include
TrackUntrackedUploadsHelpers
subject
{
described_class
.
new
}
subject
{
described_class
.
new
}
...
...
spec/support/db_cleaner.rb
View file @
d1eac99b
...
@@ -35,10 +35,6 @@ RSpec.configure do |config|
...
@@ -35,10 +35,6 @@ RSpec.configure do |config|
DatabaseCleaner
.
strategy
=
:deletion
DatabaseCleaner
.
strategy
=
:deletion
end
end
config
.
before
(
:each
,
:delete_no_cache
)
do
DatabaseCleaner
.
strategy
=
:deletion
,
{
cache_tables:
false
}
end
config
.
before
(
:each
,
:migration
)
do
config
.
before
(
:each
,
:migration
)
do
DatabaseCleaner
.
strategy
=
:deletion
,
{
cache_tables:
false
}
DatabaseCleaner
.
strategy
=
:deletion
,
{
cache_tables:
false
}
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment