新しい移行ファイルを作成し、移行を実行してから、受け取ったテストを実行した後、次のようになります。
Failure/Error: ActiveRecord::Migration.maintain_test_schema!
ActiveRecord::PendingMigrationError:
Migrations are pending. To resolve this issue, run:
bin/Rails db:migrate Rails_ENV=test
Rails_helper.rb
の次のスニペットは、移行をテストデータベースに適用することになっているのではないですか?
# Checks for pending migration and applies them before tests are run.
# If you are not using ActiveRecord, you can remove this line.
ActiveRecord::Migration.maintain_test_schema!
更新
これが私のconfig/environments/test.rb
です。
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
config.cache_classes = true
# Do not eager load code on boot. This avoids loading your whole application
# just for the purpose of running a single test. If you are using a tool that
# preloads Rails for running tests, you may have to set it to true.
config.eager_load = false
# Configure public file server for tests with Cache-Control for performance.
config.public_file_server.enabled = true
config.public_file_server.headers = {
'Cache-Control' => 'public, max-age=3600'
}
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Raise exceptions instead of rendering exception templates.
config.action_dispatch.show_exceptions = false
# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false
config.action_mailer.perform_caching = false
# Tell Action Mailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test
# Print deprecation notices to the stderr.
config.active_support.deprecation = :stderr
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end
テストを実行すると、構成は次の順序でロードされます(Railsアプリ)でautoload_pathsの順序をカスタマイズしていない限り)。
したがって、受信する移行保留中のエラーは、config.active_record.migration_error = true
この構成がRailsエンジンロードRails_helper.rb
、ここでActiveRecord::Migration.maintain_test_schema!
ディレクティブは定義されています。
2つの理由が考えられます。
config/environments/test.rb
で設定するのを見逃した可能性がありますconfig.active_record.maintain_test_schema = true
がない場合は追加し、true
に設定した場合はfalse
に設定します。
docs から
config.active_record.maintain_test_schemaはブール値であり、テストの実行時にActiveRecordがテストデータベーススキーマをdb/schema.rb(またはdb/structure.sql)で最新の状態に維持しようとするかどうかを制御します。デフォルトはtrueです。
rspec docs から
これは、テストスキーマに保留中の移行がある場合に発生するだけでなく、Railsがスキーマを読み込もうとします。例外のみが発生するようになりました。その後、保留中の移行がある場合は、スキーマがロードされています。
rake db:migrate:status
で保留中の移行があるかどうかを確認します
また、SQLite 3.7.9を使用している場合は、これを確認する必要があります ディスカッション