我无法从我的PactHelper
目录加载lib
模块。
# lib/pact_helper.rb
module PactHelper
def so_something
end
end
和
# app/controllers/registrations_controller.rb
class RegistrationsController < ApplicationController
include PactHelper
def new
...
end
end
返回undefined method 'include' for #<RegistrationsController:0x5287cf8>
有人可以向我解释为什么我的模块没有被包括在内吗?
答案 0 :(得分:3)
尝试:
require 'pact_helper.rb'
以上:
class RegistrationsController < ApplicationController
在:
registrations_controller.rb