ruby-on-rails – 升级到Rspec 3后,错误“符号与模块失败的比较”

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 升级到Rspec 3后,错误“符号与模块失败的比较”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚从Rspec 2.99升级到Rspec 3,我的某些测试出现以下错误.
Failure/Error: Unable to find matching line from backtrace
ArgumentError:
  comparison of Symbol with Module Failed

我有以下控制器测试

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 :index do

describe 'index' do

然而,您可以使用符号作为标签,例如…

describe 'index',:awesome do
  ...
end

现在运行测试时,您只能使用某个标签来定位测试.

$rspec --tag awesome
原文链接:https://www.f2er.com/ruby/266620.html

猜你在找的Ruby相关文章