我正在使用自动测试,并添加了钩子来运行我的集成测试。在工作时,每当我做出影响任何集成测试的更改时,所有集成测试都会重新运行。如果可能的话,这是我想要改变的行为。 (我正在使用rspec和webrat进行测试,没有黄瓜)
使用非集成测试时,模式是如果更改测试或其描述,它会在同一个spec文件(或描述块?)中重新运行测试。所以,比方说我们有page_controller.rb和page_controller_spec.rb。 autotest知道如果你更改其中一个文件,它只运行page_controller_spec中的测试,然后,如果它通过,它将运行所有测试。我想在集成测试中使用类似的东西 - 首先在文件中使用失败的测试运行测试,然后在它们通过时运行所有测试。
我的.autotest文件看起来像这样
require "autotest/growl"
require "autotest/fsevent"
Autotest.add_hook :initialize do |autotest|
autotest.add_mapping(/^spec\/integration\/.*_spec\.rb$/) do
autotest.files_matching(/^spec\/integration\/.*_spec\.rb$/)
end
end
答案 0 :(得分:1)
您的.autotest
是问题的根源:)它基本上表示对于/spec/integration
目录中的任何文件,其中所有应该是跑。您应该只返回匹配的文件名,如下所示:
require "autotest/growl"
require "autotest/fsevent"
Autotest.add_hook :initialize do |autotest|
autotest.add_mapping(/^spec\/integration\/.*_spec\.rb$/) do |filename|
filename
end
end
答案 1 :(得分:-1)
抱歉,我没有时间完全解决您的问题,但我想您在阅读自动测试#add_mapping方法的评论时可以自行完成。你必须使用正则表达式。请注意“+ proc +传递匹配的文件名和Regexp.last_match”。以下是完整评论:
# Adds a file mapping, optionally prepending the mapping to the
# front of the list if +prepend+ is true. +regexp+ should match a
# file path in the codebase. +proc+ is passed a matched filename and
# Regexp.last_match. +proc+ should return an array of tests to run.
#
# For example, if test_helper.rb is modified, rerun all tests:
#
# at.add_mapping(/test_helper.rb/) do |f, _|
# at.files_matching(/^test.*rb$/)
# end
def add_mapping regexp, prepend = false, &proc