Rails:Guard似乎正在删除种子数据

时间:2012-03-08 21:27:33

标签: ruby-on-rails guard

我正在使用Test :: Unit来测试我的rails应用程序,当我进行“rake test”时一切都很好。但是,运行“bundle exec guard”,我会遇到很多失败和错误(链接到我的应用程序中需要的种子),而且我的数据库都是空的(没有种子数据)。

卫队的做法有何不同?我需要在Guardfile中添加一些内容吗?

我的Guardfile看起来像这样(我认为这是保护初始化时的默认值):

guard :test do

  watch(%r{^lib/(.+)\.rb$})     { |m| "test/#{m[1]}_test.rb" }
  watch(%r{^test/.+_test\.rb$})
  watch('test/test_helper.rb')  { "test" }

  # Rails example
  watch(%r{^app/models/(.+)\.rb$})                   { |m| "test/unit/#{m[1]}_test.rb" }
  watch(%r{^app/controllers/(.+)\.rb$})              { |m| "test/functional/#{m[1]}_test.rb" }
  watch(%r{^app/views/.+\.rb$})                      { "test/integration" }
  watch('app/controllers/application_controller.rb') { ["test/functional", "test/integration"] }
end

0 个答案:

没有答案