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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
71564974
Commit
71564974
authored
Aug 16, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate db schema for context in :migration specs
parent
04f7f394
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
spec/spec_helper.rb
spec/spec_helper.rb
+2
-2
spec/support/db_cleaner.rb
spec/support/db_cleaner.rb
+1
-1
No files found.
spec/spec_helper.rb
View file @
71564974
...
...
@@ -132,14 +132,14 @@ RSpec.configure do |config|
Sidekiq
.
redis
(
&
:flushall
)
end
config
.
before
(
:
example
,
:migration
)
do
config
.
before
(
:
context
,
:migration
)
do
|
example
|
ActiveRecord
::
Migrator
.
migrate
(
migrations_paths
,
previous_migration
.
version
)
reset_column_in_migration_models
end
config
.
after
(
:
example
,
:migration
)
do
config
.
after
(
:
context
,
:migration
)
do
ActiveRecord
::
Migrator
.
migrate
(
migrations_paths
)
reset_column_in_migration_models
...
...
spec/support/db_cleaner.rb
View file @
71564974
...
...
@@ -19,7 +19,7 @@ RSpec.configure do |config|
DatabaseCleaner
.
strategy
=
:truncation
end
config
.
before
(
:
each
,
:migration
)
do
config
.
before
(
:
context
,
:migration
)
do
DatabaseCleaner
.
strategy
=
:truncation
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