使用 mocha 模拟 Rails 应用程序对象

发布于 2024-11-09 03:37:41 字数 412 浏览 0 评论 0原文

我正在编写一个生成器,我需要模拟 Rails.application 对象并返回 Rails.application.class.parent 作为 Rails 应用程序的名称。

def test_model_with_application_namespace
  name = "Dummyapp"
  application = Rails.stubs(:application).class.parent.returns(name)
  run_generator ["file", "--namespaced"]
  assert_file "app/models/myapp/file.rb", /class Dummyapp::File < ActiveRecord::Base/
end

这就是我到目前为止所进行的测试。

I'm writing a generator and I need to get mock a Rails.application object and get back the Rails.application.class.parent as the name of the Rails application.

def test_model_with_application_namespace
  name = "Dummyapp"
  application = Rails.stubs(:application).class.parent.returns(name)
  run_generator ["file", "--namespaced"]
  assert_file "app/models/myapp/file.rb", /class Dummyapp::File < ActiveRecord::Base/
end

This is what I have so far for my test.

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

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

发布评论

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

评论(1

内心旳酸楚 2024-11-16 03:37:41

您需要将 Rails.application.class 返回的对象作为响应 parent 并返回 name 的模拟。现在,您只需删除应用程序即可。您需要将父级、类和应用程序作为模拟。可能有一种更干净的方法,但我认为这可以满足您的要求:

 application = Rails.stubs(:application).returns(mock(:class => mock(:parent => name)))

You need the object retured by Rails.application.class to be a mock that responds to parent and returns name. Right now, you just stub out application. You need parent, class, and application to be mocks. There is probably a cleaner way of doing it, but I think this will do what you want:

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