我正在尝试从我的一个规范助手
中的模块中访问一个方法我将模块包含在测试助手
中module Support
class RestHelper
include Rest::Rest
def create_rest_client_for_ifa
# Call method from module
create_rest_client(uname, pword)
end
end
end
但是当我运行我的规范时,我一直收到NoMethodError:
Failure/Error: @rest_client = Support::RestHelper.create_rest_client_for_ifa
NoMethodError:
undefined method `create_rest_client' for Support::RestHelper:Class
这是我的模块代码:
module Rest
module Rest
.
.
def create_rest_client(uname, pword)
# code
end
.
.
end
end
在rails控制台中测试它似乎工作正常
$ RAILS_ENV=test rails c
irb> include Rest::Rest
=> Object
irb> create_rest_client(uname, pword)
我错过了什么?为什么我不能从测试助手中访问该方法?
非常感谢任何帮助。
答案 0 :(得分:7)
我记得,include
将模块方法添加为实例方法,extend
将它们添加为类方法。