我正在尝试database_cleaner
使用我的测试套件而我无法在网上找到有关此错误的信息:
ERROR Couldn't find User with id=1
测试运行正常,直到我添加database_cleaner
。这就是我在test_helper.rb
文件中使用它的方式:
# Database cleaner.
DatabaseCleaner.strategy = :truncation
class MiniTest::Spec
before :each do
DatabaseCleaner.clean
end
end
如果我的策略为:transaction
,它也无效。
答案 0 :(得分:0)
根据docs,对DatabaseCleaner.clean
的调用应该在后挂钩中,而DatabaseCleaner.start
在前挂钩中(截断策略可能不需要启动调用。) / p>
这里可能发生的事情是数据库清理程序在实际测试运行之前清除在挂钩之前设置的任何数据。它将取决于挂钩运行的顺序。