Rspec Ruby on Rails 控制器问题

发布于 2024-12-01 07:56:43 字数 229 浏览 2 评论 0原文

我目前正在使用 ruby​​ 1.9.2 和 Rails 3,并且正在进行 rspec 测试。基本上,我有一个由应用程序控制器中的 before 过滤器调用的函数,这样每次在我的站点上的任何位置进行控制器操作时,它显然都会运行。出于测试目的,我正在为不同的控制器编写测试,但我的操作不会引发我的 before 过滤器函数调用。有没有办法在 rspec 测试中专门从特定控制器调用函数?我无法在线发布代码,所以索要它是没有用的:P。
谢谢

I'm currently using ruby 1.9.2 and rails 3 and I'm in the middle of rspec testing. Basically, I have a function that is called by a before filter in the application controller such that it obviously gets run every time a controller action is made anywhere on my site. For testing purposes, I'm writing tests for a different controller but my actions do not set off my before filter function call. Is there any way to specifically call functions from a specific controller within rspec tests? I can't post the code online, so no use asking for it :P.
Thanks

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

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

发布评论

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

评论(1

墨离汐 2024-12-08 07:56:43

在控制器规范中的 itbefore(:each) 块内:

controller.send( :your_method_name )

您的函数将被调用。

Inside an it or before(:each) block in a controller spec:

controller.send( :your_method_name )

And your function is going to be called.

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