在 Sinatra 中工作时,会创建一个本地对象request
,并使其可供所有视图和助手使用。因此,我可以ApplicationHelper
使用辅助方法创建一个模块,如果在视图中调用辅助方法,它们可以依次调用request
对象,如下所示:
module ApplicationHelper
def nav_link_to(text,path)
path == request.path_info ? klass = 'class="current"' : klass = ''
%Q|<a href="#{path}" #{klass}>#{text}</a>|
end
end
现在,我想对此进行测试,但在我的测试中,该request
对象不存在。我试图嘲笑它,但这没有用。到目前为止,这是我的测试:
require 'minitest_helper'
require 'helpers/application_helper'
describe ApplicationHelper do
before :all do
@helper = Object.new
@helper.extend(ApplicationHelper)
end
describe "nav links" do
before :each do
request = MiniTest::Mock.new
request.expect :path_info, '/'
end
it "should return a link to a path" do
@helper.nav_link_to('test','/test').must_equal '<a href="/test">test</a>'
end
it "should return an anchor link to the current path with class 'current'" do
@helper.nav_link_to('test','/').must_equal '<a href="test" class="current">test</a>'
end
end
end
那么,您如何模拟一个“本地”对象,以便您的测试代码可以调用它?