summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-16 12:49:06 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-16 12:49:06 +0200
commit71564974935feafd3f0025ec51832fcea6cba003 (patch)
tree26f99ab03332970b24df72c557fdb1f5ace186af
parent04f7f394d3825e3290f523dce28d42b7c87fc9bb (diff)
downloadgitlab-ce-71564974935feafd3f0025ec51832fcea6cba003.tar.gz
Migrate db schema for context in :migration specs
-rw-r--r--spec/spec_helper.rb4
-rw-r--r--spec/support/db_cleaner.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 3eea39d4bf4..c606030220f 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -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
diff --git a/spec/support/db_cleaner.rb b/spec/support/db_cleaner.rb
index 7f5769209bb..7492f999a18 100644
--- a/spec/support/db_cleaner.rb
+++ b/spec/support/db_cleaner.rb
@@ -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