gpt4 book ai didi

ruby-on-rails - 升级到Rspec 3后出现 `comparison of Symbol with Module failed`错误

转载 作者:行者123 更新时间:2023-12-03 21:27:01 25 4
gpt4 key购买 nike

我刚刚从Rspec 2.99升级到Rspec 3,并且在某些测试中遇到以下错误。

Failure/Error: Unable to find matching line from backtrace
ArgumentError:
comparison of Symbol with Module failed

我有以下 Controller 测试
require 'spec_helper'

describe PeopleController, type: :controller do
subject { response }

describe :index do
before { get :index }

it { should_not be_success }
it { should have_http_status '401' }
end
end

知道什么可能导致错误吗?

最佳答案

您不能在describe之后再使用符号。您需要更换

describe :index do


describe 'index' do

但是,您可以将符号用作标签,例如...
describe 'index', :awesome do
...
end

现在,在运行测试时,您只能针对具有特定标签的测试。
$ rspec --tag awesome

关于ruby-on-rails - 升级到Rspec 3后出现 `comparison of Symbol with Module failed`错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24043426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com