我正在设置一个新项目:
我正在尝试在Michael Hartl tutorial之后使用guard和spork配置rspec。我已经为其他项目做了这个,但它很不错,但这次我从守卫那里得到了一个奇怪的行为。
在旧项目中,如果我有后卫运行,请将这样的行添加到方法'puts“Test”'并保存文件。 Guard检测到文件已更改,重新运行该文件的测试,并且消息显示在终端上。
如果我在这个新项目上做同样的事情。 Guard alse检测到文件已更改,重新运行该文件的测试但该消息不会出现在终端上。它似乎仍在使用旧的代码库。
我已经将两个项目配置区分开来,一切看起来都很相似。 有什么想法吗?
我会在这里留下配置文件,看看是否有人发现奇怪的东西。
的Gemfile
...
gem 'rb-fsevent', '~> 0.9.1'
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'guard-rspec'
gem 'factory_girl_rails'
end
group :test do
gem 'capybara'
gem 'guard-spork'
gem 'spork'
end
Guardfile
guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do
watch('config/application.rb')
watch('config/environment.rb')
watch('config/environments/test.rb')
watch(%r{^config/initializers/.+\.rb$})
watch('Gemfile')
watch('Gemfile.lock')
watch('spec/spec_helper.rb') { :rspec }
watch('test/test_helper.rb') { :test_unit }
watch(%r{features/support/}) { :cucumber }
end
guard 'rspec', :version => 2, :all_after_pass => false, :cli => '--drb' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
# Rails example
watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
watch('config/routes.rb') { "spec/routing" }
watch('app/controllers/application_controller.rb') { "spec/controllers" }
# Capybara request specs
watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/requests/#{m[1]}_spec.rb" }
# Turnip features and steps
watch(%r{^spec/acceptance/(.+)\.feature$})
watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
end
规格/ spec_helper.rb
require 'rubygems'
require 'spork'
Spork.prefork do
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'rspec/autorun'
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
RSpec.configure do |config|
config.include Devise::TestHelpers, :type => :controller
config.extend ControllerMacros, :type => :controller
config.fixture_path = "#{::Rails.root}/spec/fixtures"
config.use_transactional_fixtures = true
config.infer_base_class_for_anonymous_controllers = false
config.order = "random"
end
end
Spork.each_run do
# This code will be run each time you run your specs.
end
答案 0 :(得分:1)
Spork在您进行更改时没有重新加载代码可能是一个问题,看看这个问题应该解决您的问题: