Sha256: 431e7cd814d5c535e735dcad1379d12de5230ca8c71aaaec29f48e7df2e37093
Contents?: true
Size: 804 Bytes
Versions: 7
Compression:
Stored size: 804 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 assign(:<%= 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 it "renders attributes in <p>" do render <% for attribute in output_attributes -%> response.should contain(<%= attribute.default.inspect %>) <% end -%> end end
Version data entries
7 entries across 7 versions & 1 rubygems