Sure, autospec will run your integration tests…
You just have to add a mapping in .autotest…
Autotest.add_hook :initialize do |at|
at.add_mapping(%r%^spec/(integration)/.*rb$%) { |filename, _|
filename
}
end
You just have to add a mapping in .autotest…
Autotest.add_hook :initialize do |at|
at.add_mapping(%r%^spec/(integration)/.*rb$%) { |filename, _|
filename
}
end
Thanks for pointing this out and for the .autotest code!