gpt4 book ai didi

ruby-on-rails - Spork/Autotest 不自动获取更改

转载 作者:行者123 更新时间:2023-12-04 05:56:16 27 4
gpt4 key购买 nike

我正在按照 http://ruby.railstutorial.org/ 上的教程开发我的第一个 Rails 应用程序.我已经完全按照教程中的说明设置了我的开发环境(我正在使用带有 Lion 的 Macbook Pro)并且它的工作没有任何问题,除了一个小问题。我先编写失败的测试,然后更改代码以使它们通过,我可以在浏览器中检查页面是否正常工作,但由于某种原因,测试结果仍然是“红色”。我有一个运行 3 个选项卡的终端,第一个选项卡我运行 spork (bundle exec spork),第二个选项卡我运行 rails 服务器 (rails s),第三个选项卡我进行所有命令行更改并运行测试 (autotest) || bundle exec rspec spec/).我必须重新启动 spork、rails 服务器,然后再次测试以查看它们是否变为“绿色”。

这是预期的行为吗?因为根据教程,大多数时候我应该能够看到它们变绿而无需重新启动服务器/spork。

编辑

这是我的 spec_helper.rb 文件的样子

require 'rubygems'
require 'spork'

Spork.prefork do
# Loading more in this block will cause your tests to run faster. However,
# if you change any configuration or code from libraries loaded here, you'll
# need to restart spork for it take effect.

ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'


# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}

RSpec.configure do |config|
# == Mock Framework
#
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
#
# config.mock_with :mocha
# config.mock_with :flexmock
# config.mock_with :rr
config.mock_with :rspec

config.fixture_path = "#{::Rails.root}/spec/fixtures"

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

end

Spork.each_run do
# This code will be run each time you run your specs.
end

谢谢指教!

最佳答案

我刚刚在尝试使用 spork 和 watchr 设置环境时遇到了同样的问题,并在这里找到了解决方案(至少在我的情况下):http://www.rubyinside.com/how-to-rails-3-and-rspec-2-4336.html

编辑config/environments/test.rb

改变

config.cache_classes = true

config.cache_classes = false

这应该让 spork 在不重启的情况下获取对 Controller 和模型的更改。

编辑:

从那以后,我遇到了将 cache_classes 设置为 false 的问题(它导致 machinist 和 cucumber 出现问题 - rspec 和 machinist 非常好)。

无论如何,似乎有更好的解决方案(取自此处:http://ablogaboutcode.com/2011/05/18/spork-rspec-sham-and-caching-classes/ 和此处:http://mikbe.tk/2011/02/10/blazingly-fast-tests/)将以下代码添加到您的 Spork.each_run block

Spork.each_run do
ActiveSupport::Dependencies.clear
ActiveRecord::Base.instantiate_observers

load "#{Rails.root}/config/routes.rb"
Dir["#{Rails.root}/app/**/*.rb"].each { |f| load f }
end if Spork.using_spork?

关于ruby-on-rails - Spork/Autotest 不自动获取更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7240990/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com