1

1 つのファイルに 2 つの rake タスクがあります。種をまき、移植します。シードは必要なデータを作成しており、生成はテスト用のサンプル データを生成しています。

私のテストでは、データベースを操作しています(新しいエントリの追加、削除など)。データベースクリーナーgemを使用してデータベースをリセットしていますが、データベースをリセットすると、次のテストのためにデータを入力する必要があります。次の設定がありますが、データベースがまだ空であり、データの入力がありません。

これは spec/support/database_cleaner.rb です

require 'rake'
load File.expand_path("../../../lib/tasks/my_tasks.rake", __FILE__)
RSpec.configure do |config|
  config.use_transactional_fixtures = false 
  config.before(:suite) do
    DatabaseCleaner.clean_with(:truncation)
  end
  config.before(:each) do
    DatabaseCleaner.strategy = :transaction
  end
  config.before(:each, :js => true) do
    DatabaseCleaner.strategy = :truncation
  end

  config.before(:each) do
    DatabaseCleaner.start
    Rake::Task.define_task(:environment)
    Rake::Task['db:seed'].invoke
    Rake::Task['db:populate'].invoke
  end

  config.after(:each) do
    DatabaseCleaner.clean
  end
end

spec/rails_helper.rb

# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV['RAILS_ENV'] ||= 'test'
require 'rake'

require File.expand_path('../../config/environment', __FILE__)
# Prevent database truncation if the environment is production
abort("The Rails environment is running in production mode!") if Rails.env.production?
 require 'spec_helper'
 require 'factory_girl_rails'
 require 'rspec/rails'
 require 'capybara/poltergeist'

 # Checks for pending migrations before tests are run.
 # If you are not using ActiveRecord, you can remove this line.
 ActiveRecord::Migration.maintain_test_schema!

 Capybara.configure do |config|
   config.default_wait_time = 20
 end

 RSpec.configure do |config|
 # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
 #
 #  config.fixture_path = "#{::Rails.root}/spec/fixtures"

 config.include FactoryGirl::Syntax::Methods

 # If you're not using ActiveRecord, or you'd prefer not to run each of your 
 # examples within a transaction, remove the following line or assign false
 # instead of true.

 config.infer_spec_type_from_file_location!
end
4

1 に答える 1

0

私はそれを回避する方法を見つけましたが、これは完璧ではなく、まだ解決策を探しているので、見つけたら回答を投稿してください。これを正解として選択するつもりはありません。

コンテンツの spec/support/database_cleaner.rb ファイルを spec/spec_helper.rb ファイルに配置する必要があります。

RSpec.configure do |config| 
.
.
.
  config.use_transactional_fixtures = false 
  config.before(:suite) do
    DatabaseCleaner.clean_with(:truncation)
  end

  config.before(:each) do
    DatabaseCleaner.strategy = :transaction
  end

  config.before(:each, :js => true) do
    DatabaseCleaner.strategy = :truncation
  end

  config.before(:each) do
    DatabaseCleaner.start
    Rake::Task.define_task(:environment)
    Rake::Task['db:seed'].invoke
    Rake::Task['db:populate'].invoke
  end

  config.after(:each) do
    # DatabaseCleaner.clean
  end
  config.infer_spec_type_from_file_location!
end

重要: DatabaseCleaner.cleanをコメントまたは削除する必要があります。

于 2015-12-31T22:22:34.700 に答える