Sha256: 9a223748c8ae20f852636b8ae3f58ea82dbff40475d07278eac9a6831b13e50d
Contents?: true
Size: 800 Bytes
Versions: 9
Compression:
Stored size: 800 Bytes
Contents
require 'spec_helper' <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%> describe "<%= table_name %>/show.html.<%= options[:template_engine] %>" do before(:each) do @<%= file_name %> = assign(:<%= file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? '))' : ',' %> <% output_attributes.each_with_index do |attribute, attribute_index| -%> :<%= attribute.name %> => <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> <% if !output_attributes.empty? -%> )) <% end -%> end it "renders attributes in <p>" do render <% for attribute in output_attributes -%> rendered.should contain(<%= value_for(attribute) %>.to_s) <% end -%> end end
Version data entries
9 entries across 9 versions & 1 rubygems