ControllerMacros cannot be seen in RSpec

后端 未结 1 660
悲哀的现实
悲哀的现实 2020-12-11 02:42

I have a Rails app and I am trying to test it. I use devise to log in. However, I faced a problem that occurs when I want to test:

Users/ender/Projects/ratin         


        
相关标签:
1条回答
  • 2020-12-11 03:11

    I guess the error stems from:

    config.extend ControllerMacros, :type => :controller
    

    You should have:

    config.include ControllerMacros, :type => :controller 
    
    0 讨论(0)
提交回复
热议问题