堆栈级别太深 - Rspec

时间:2013-09-30 02:59:06

标签: ruby-on-rails rspec ruby-on-rails-4 factory-bot

我已经看到了很多这些问题,但他们的解决方案都没有对我有用。我有一个这样的测试:

describe RolesController do
  describe "#delet" do 

    context "When the user is logged in" do 
      let(:user) {FactoryGirl.create(:user)}
      let(:admin) {FactoryGirl.create(:admin)}
      let(:adminRole) {FactoryGirl.create(:adminRole)}

      it "Should allow admins to delete roles" do 
        sign_in admin
        put :destroy, :id => adminRole.id
      end
    end
  end
end

简单,简单,简单。然而,我得到了典型的错误:

  1) RolesController#delet When the user is logged in Should allow admins to delete roles
     Failure/Error: Unable to find matching line from backtrace
     SystemStackError:
       stack level too deep
     # /home/adam/.rvm/gems/ruby-2.0.0-p247/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb:23

我和所有人都喜欢......什么?我再次阅读了几十个关于此问题的问题,这似乎与工厂女孩有关,但我看不出这里的问题是什么。我有很多其他测试实例化这样的基于工厂女孩的对象没有问题。

2 个答案:

答案 0 :(得分:1)

在以下代码块中,不要使用您在let定义的变量,因为它会触发无限递归。

答案 1 :(得分:-1)

我认为有些命名冲突导致此堆栈级别错误。

let(:adminRole) { FactoryGirl.create(:adminRole) }

如何将adminRole工厂重命名为:admin_role

factory :admin_role do
  ...
end

并将let更改为关注variable convention

let(:admin_role) { FactoryGirl.create(:admin_role) }

希望这可以帮助你。