我正在使用bundle exec rake cucumber
来运行我的功能文件但 我需要对其进行自定义,以便即使在黄瓜测试完成后,我的测试数据库也应该保留,因为我会转储我的遥控器生产数据到我的本地测试数据库 。
我也删除了数据库清理程序,因为默认情况下它会清理测试数据库..我试图查看cucumber.rake
并找出它运行的这些行test:prepare
namespace :cucumber do
Cucumber::Rake::Task.new({:ok => 'test:prepare'}, 'Run features that should pass') do |t|
t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
t.fork = true # You may get faster startup if you set this to false
t.profile = 'default'
t.rcov = true
end
我希望在我的黄瓜/ rspec测试完成后禁用删除我的测试数据库。有什么办法,因为我尝试搜索但没有得到一个好的来源。而且我将在测试数据库中转储数据..所以解决方案应该无论测试数据库中的数据如何,都可以工作。
my gemfile
group :development, :test do
gem 'capybara'
gem 'annotate'
gem "factory_girl_rails", "~> 1.1.rc1"
gem "factory_girl_generator", ">= 0.0.3"
gem "rspec-rails", ">= 2.6.0"
gem 'rr'
gem 'ruby-debug'
gem 'haml-rails'
gem 'rcov'
##removed database cleaner as i want to persist test data always
##gem 'database_cleaner'
gem 'pry-rails'
##cucumber,mysql added for test database ONLY
gem 'cucumber-rails', :require => false
gem 'mysql'
端
cucumber.rake
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
# It is recommended to regenerate this file in the future when you upgrade to a
# newer version of cucumber-rails. Consider adding your own code to a new file
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
# files.
unless ARGV.any? {|a| a =~ /^gems/} # Don't load anything when running the gems:* tasks
vendored_cucumber_bin = Dir["#{Rails.root}/vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
$LOAD_PATH.unshift(File.dirname(vendored_cucumber_bin) + '/../lib') unless vendored_cucumber_bin.nil?
begin
require 'cucumber/rake/task'
namespace :cucumber do
Cucumber::Rake::Task.new({:ok => 'test:prepare'}, 'Run features that should pass') do |t|
t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
t.fork = true # You may get faster startup if you set this to false
t.profile = 'default'
t.rcov = true ##added to get coverage using rcov
end
Cucumber::Rake::Task.new({:wip => 'test:prepare'}, 'Run features that are being worked on') do |t|
t.binary = vendored_cucumber_bin
t.fork = true # You may get faster startup if you set this to false
t.profile = 'wip'
t.rcov = true ##added to get coverage using rcov
end
Cucumber::Rake::Task.new({:rerun => 'test:prepare'}, 'Record failing features and run only them if any exist') do |t|
t.binary = vendored_cucumber_bin
t.fork = true # You may get faster startup if you set this to false
t.profile = 'rerun'
t.rcov = true ##added to get coverage using rcov
end
desc 'Run all features'
task :all => [:ok, :wip]
task :statsetup do
require 'rails/code_statistics'
::STATS_DIRECTORIES << %w(Cucumber\ features features) if File.exist?('features')
::CodeStatistics::TEST_TYPES << "Cucumber features" if File.exist?('features')
end
end
desc 'Alias for cucumber:ok'
task :cucumber => 'cucumber:ok'
task :default => :cucumber
task :features => :cucumber do
STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
end
# In case we don't have the generic Rails test:prepare hook, append a no-op task that we can depend upon.
task 'test:prepare' do
end
task :stats => 'cucumber:statsetup'
rescue LoadError
desc 'cucumber rake task not available (cucumber not installed)'
task :cucumber do
abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin'
end
end
end
答案 0 :(得分:2)
好吧我无法停止测试:db:prepare但是我能够 持久测试数据 ,即使在运行cucumber / rspec之后也将此配置设置为False在env.rb
Cucumber::Rails::World.use_transactional_fixtures = false
-------希望它也可以帮助别人。