如何进行自动测试以注意到子目录中的更改?

发布于 2024-10-14 16:33:49 字数 228 浏览 2 评论 0原文

我有一些像这样组织的子模块:

|-- app
|   |-- models
|   |   |-- foo
|   |   |   |-- foo-1.rb
|   |   |   |-- foo-2.rb
|   |   |   |-- foo-3.rb
|   |   |-- foo.rb

如何进行自动测试以注意到对 foo-*.rb 所做的更改,然后运行适当的规范?

I have some submodules organized like this:

|-- app
|   |-- models
|   |   |-- foo
|   |   |   |-- foo-1.rb
|   |   |   |-- foo-2.rb
|   |   |   |-- foo-3.rb
|   |   |-- foo.rb

How can I get autotest to notice changes made to foo-*.rb, and then run the appropriate specs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

人疚 2024-10-21 16:33:49

您可以使用映射填充 autotest/discover.rb 文件:

Autotest.add_hook :initialize do |at|
  # match the model name (the whole Regex object is in _)
  at.add_mapping(%r%^app/models/(foo)/\w+\.rb$%, true) do |filename, _|
    "spec/models/#{_[1]}_spec.rb"
  end
end

您可以找到更多如何使用映射和挂钩 在 API 文档中

You can populate your autotest/discover.rb file with mappings:

Autotest.add_hook :initialize do |at|
  # match the model name (the whole Regex object is in _)
  at.add_mapping(%r%^app/models/(foo)/\w+\.rb$%, true) do |filename, _|
    "spec/models/#{_[1]}_spec.rb"
  end
end

You can find more how to use the mappings and hooks in the API docs.

辞慾 2024-10-21 16:33:49

也许你应该调查 watchr

https://github.com/mynyml/watchr

它类似于自动测试,同时相当多的可配置性和更容易设置。

Perhaps you should investigate watchr

https://github.com/mynyml/watchr

It's similar to autotest, while being quite a bit more configurable and more easily setup.

琉璃梦幻 2024-10-21 16:33:49

另一个有趣的选择是 guard

Another interesting alternative is guard.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文