编辑:
我发现如果我在view.lookup_context.prefixes = %w[base]
之前插入render
,测试就会知道正确的路径。这是解决这个问题的最佳/正确方法吗?
我将所有部分放在一个基本文件夹中,并且所有有权访问这些部分的控制器都继承自base_controller
这一切都很有效,但是生成的视图测试无法找到所在的部分内容基础文件夹。
这是错误:
Failure/Error: render
ActionView::Template::Error:
Missing partial /admin_menu, circuits/admin_menu with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder, :coffee, :jbuilder]}. Searched in:
* "/Users/Mac/Folder/ProjectName/app/views"
如何告诉我的视图测试在哪里查找部分内容?
为了完整性,这是规范:
require 'spec_helper'
describe "circuits/index" do
before(:each) do
assign(:circuits, [
stub_model(Circuit,
:name => "Name",
:description => "MyText"
),
stub_model(Circuit,
:name => "Name",
:description => "MyText"
)
])
end
it "renders a list of circuits" do
view.lookup_context.prefixes = %w[base application]
render
assert_select "tr>td", :text => "Name".to_s, :count => 2
assert_select "tr>td", :text => "MyText".to_s, :count => 2
end
end
答案 0 :(得分:4)
使用部分继承向我的应用添加主题功能时,我遇到了类似的问题。对于Rails 4,它与编辑的答案略有不同 - 我必须在我的视图规范中添加它:
before do
view.lookup_context.view_paths.push 'app/views/themes/light'
end
其中themes/light
文件夹包含一些特定于灯光主题的部分内容。
答案 1 :(得分:2)
你应该使用
<%= render 'base/admin_menu' %>