Commit 3bdaf124 authored by Rémy Coutable's avatar Rémy Coutable

Use the latest migration in spec/migrations/rename_reserved_project_names_spec.rb

We do that because  it's using factories and it's not worth it to get rid of them.
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent b7cb6902
...@@ -3,10 +3,14 @@ ...@@ -3,10 +3,14 @@
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20161221153951_rename_reserved_project_names.rb') require Rails.root.join('db', 'post_migrate', '20161221153951_rename_reserved_project_names.rb')
# This migration uses multiple threads, and thus different transactions. This # This migration is using factories, which set fields that don't actually
# means data created in this spec may not be visible to some threads. To work # exist in the DB schema previous to 20161221153951. Thus we just use the
# around this we use the DELETE cleaning strategy. # latest schema when testing this migration.
describe RenameReservedProjectNames, :delete do # This is ok-ish because:
# 1. This migration is a data migration
# 2. It only relies on very stable DB fields: routes.id, routes.path, namespaces.id, projects.namespace_id
# Ideally, the test should not use factories and rely on the `table` helper instead.
describe RenameReservedProjectNames, :migration, schema: :latest do
let(:migration) { described_class.new } let(:migration) { described_class.new }
let!(:project) { create(:project) } let!(:project) { create(:project) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment