namespace :fixtures do
namespace :load do
task :prepare => :environment do
ENV['FIXTURES_PATH'] = "spec/fixtures"
ENV['RAILS_ENV'] ||= "test"
puts ENV.inspect
Rake::Task["db:fixtures:load"].invoke
end
end
end
これを./lib/tasksのspecial.rakeファイルに追加して、rake db:fixtures:loadコマンドをspec / Fixturesディレクトリのフィクスチャに適用し、テスト環境に適用します。
動いていない。どこが間違っているのですか?