require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper' describe "/<%= name.pluralize %>/new.<%= default_file_extension %>" do include <%= controller_class_name %>Helper before do @<%= file_name %> = mock_model(<%= singular_name.capitalize %>) @<%= file_name %>.stub!(:new_record?).and_return(true) <% for attribute in attributes -%> @<%= file_name %>.stub!(:<%= attribute.name %>).and_return(<%= attribute.default_value %>) <% end -%> assigns[:<%= file_name %>] = @<%= file_name %> end it "should render new form" do render "/<%= name.pluralize %>/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