未定义的方法“操作”;为 Rails 控制器运行单个 RSpec 文件

发布于 2024-11-10 01:44:56 字数 762 浏览 1 评论 0原文

我有一个特殊的情况 - rspec 文件在独立运行时失败,但在作为整个套件的一部分运行时运行正常。

Failure/Error: visit oauth_callback_path
     NoMethodError:
       undefined method `action' for MyController:Class
     # <internal:prelude>:10:in `synchronize'
     # ./spec/requests/login_spec.rb:xx:in `block (5 levels) in <top (required)>'
     # ./spec/requests/login_spec.rb:xx:in `block (4 levels) in <top (required)>'

简化规格:

require 'spec_helper'

class MyController
  def oauth_response
    sign_in(
        ENV['TEST_ACCESS_TOKEN'],
        ENV['TEST_ACCESS_SECRET'])
    redirect_to root_path
  end
end


describe 'logging in' do
  it 'login' do
    visit oauth_callback_path
    response.should be_success
  end
end

I have a peculiar situation - an rspec file fails when run independently, but run okay when run as part of the entire suite.

Failure/Error: visit oauth_callback_path
     NoMethodError:
       undefined method `action' for MyController:Class
     # <internal:prelude>:10:in `synchronize'
     # ./spec/requests/login_spec.rb:xx:in `block (5 levels) in <top (required)>'
     # ./spec/requests/login_spec.rb:xx:in `block (4 levels) in <top (required)>'

Simplified spec:

require 'spec_helper'

class MyController
  def oauth_response
    sign_in(
        ENV['TEST_ACCESS_TOKEN'],
        ENV['TEST_ACCESS_SECRET'])
    redirect_to root_path
  end
end


describe 'logging in' do
  it 'login' do
    visit oauth_callback_path
    response.should be_success
  end
end

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

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

发布评论

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

评论(2

纵性 2024-11-17 01:44:56

我认为问题在于 MyController 没有扩展 ApplicationController。这就是为什么没有为 MyController 定义方法 action 的原因。

I believe the problem is that MyController is not extending ApplicationController. That's why the method action is not defined for MyController.

甜扑 2024-11-17 01:44:56

class MyController 似乎阻止了 Rails 魔法类加载。测试应该明确require控制器,或者扩展应该使用MyController.class_eval定义

The class MyController appears to be blocking Rails magic class loading. Either the test should explicitly require the controller, or the extension should be defined with MyController.class_eval

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