Sha256: 810ef6352877efc4a3c0b5e3b1943a11e03689320c7a2ad65d89ad016d86e769
Contents?: true
Size: 876 Bytes
Versions: 19
Compression:
Stored size: 876 Bytes
Contents
require 'spec_helper' <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%> describe "/<%= table_name %>/show.<%= default_file_extension %>" do include <%= controller_class_name %>Helper before(:each) 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_value %><%= 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 have_text(/<%= Regexp.escape(attribute.default_value).gsub(/^"|"$/, '')%>/) <% end -%> end end
Version data entries
19 entries across 19 versions & 7 rubygems