Sha256: 824189aad49969564939d1456ff77407837ebbc3956029a26eb6509b5986349c
Contents?: true
Size: 1.16 KB
Versions: 33
Compression:
Stored size: 1.16 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper') describe "/<%= table_name %>/new.<%= default_file_extension %>" do include <%= controller_class_name %>Helper before(:each) do assigns[:<%= file_name %>] = stub_model(<%= class_name %>, :new_record? => true<%= attributes.empty? ? '' : ',' %> <% attributes.each_with_index do |attribute, attribute_index| -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%> :<%= attribute.name %> => <%= attribute.default_value %><%= attribute_index == attributes.length - 1 ? '' : ','%> <% end -%><% end -%> ) end it "should render new form" do render "/<%= table_name %>/new.<%= default_file_extension %>" response.should have_tag("form[action=?][method=post]", <%= table_name %>_path) do <% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%> with_tag("<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>[name=?]", "<%= file_name %>[<%= attribute.name %>]") <% end -%><% end -%> end end end
Version data entries
33 entries across 33 versions & 8 rubygems