Sha256: 0a712a34627172566f685f0ee79d041d0d9a8ac02926f38238b4980ef1193ee1
Contents?: true
Size: 991 Bytes
Versions: 7
Compression:
Stored size: 991 Bytes
Contents
require 'spec_helper' <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%> describe "/<%= table_name %>/new.html.<%= options[:template_engine] %>" do include <%= controller_class_name %>Helper before(:each) do assigns[:<%= file_name %>] = stub_model(<%= class_name %>, :new_record? => true<%= output_attributes.empty? ? '' : ',' %> <% output_attributes.each_with_index do |attribute, attribute_index| -%> :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> ) end it "renders new <%= file_name %> form" do render response.should have_tag("form[action=?][method=post]", <%= table_name %>_path) do <% for attribute in output_attributes -%> with_tag("<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>[name=?]", "<%= file_name %>[<%= attribute.name %>]") <% end -%> end end end
Version data entries
7 entries across 7 versions & 2 rubygems