require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper') <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].include?(attribute.type) } -%> describe "/<%= plural_name %>/show.html" do before do assigns[:<%= file_name %>] = @<%= file_name %> = stub_model(<%= class_name %><%= output_attributes.empty? ? ')' : ',' %> <% output_attributes.each_with_index do |attribute, attribute_index| -%> :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> <% if !output_attributes.empty? -%> ) <% end -%> end subject do render "<%= plural_name %>/show.html" response end it "should render attributes in
" do <% for attribute in output_attributes -%> should have_text(/<%= Regexp.escape(attribute.default.inspect).gsub(/^"|"$/, '')%>/) <% end -%> end end