Ruby 类会在 Rake 任务之间被清除吗

发布于 2024-09-08 15:14:50 字数 311 浏览 2 评论 0原文

我有一个 Rakefile 将规范任务定义为

task :spec => [:check_dependencies, :load_backends]

然后运行实际的 rspec 测试。在 load_backends 任务期间,它加载一个名为 Story 的类,但在第一个规范测试中,define?(Story) 返回 false。

我假设 Rake 的预期行为是在每个任务开始时从一个新的环境开始,但是有没有办法覆盖它?或者我是否需要重新构建将后端加载到每个任务中?

I have a Rakefile that defines the spec task as

task :spec => [:check_dependencies, :load_backends]

And then runs the actual rspec tests. During the load_backends task, it loads a class called Story, but in the first spec test, defined?(Story) returns false.

I'm assuming that it is intended behavior of Rake to start with a fresh environment at the beginning of each task, but is there a way to override this? Or do I need to re-architect loading the backends into each task?

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

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

发布评论

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

评论(1

你是我的挚爱i 2024-09-15 15:14:50

RSpec 的spec 任务会启动一个新的Ruby 进程(我认为主要是为了不与您的Rake 进程搞混),因此rake 任务(甚至是spec 任务)中定义的类在您的规范中不可用。考虑将此逻辑移至您的规范助手或不使用 RSpec 的规范任务。

RSpec's spec task fires up a new Ruby process (mainly to not screw with your Rake process, I think), therefore classes defined in a rake task (even the spec task) are not available in your specs. Consider moving this logic to your spec helper or don't use RSpec's spec task.

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