Sha256: 330fd9023341b684b13a8255166effc1d62912b6bdbe67134203ac2e78989ebf

Contents?: true

Size: 1.68 KB

Versions: 4

Compression:

Stored size: 1.68 KB

Contents

require 'spec_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
describe "<%= table_name %>/new.html.haml" do
  before(:each) do
<% if child_model? %>
    <%=parent_class%>.stub(:find).with(anything()) {john_q :<%=parent_name%>}
<% end %>
<% if belongs_to %>
    params[:<%=parent_id%>] = john_q(:<%=parent_name%>).id
    @<%= parent_name %> = assign(:<%=parent_name%>, john_q(:<%=parent_name%>))
<% end %>
    @<%=model_name%> = assign(:<%= file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? ').as_new_record)' : ',' %>
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
      :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
<% end -%>
<%= !output_attributes.empty? ? "    ).as_new_record)\n  end" : "  end" %>

  it "renders new <%= file_name %> form" do
    render

<% if webrat? -%>
    rendered.should have_selector("form", :action => <%= index_url_helper %>, :method => "post") do |form|
<% for attribute in output_attributes -%>
      form.should have_selector("<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>", :name => "<%= file_name %>[<%= attribute.name %>]")
<% end -%>
    end
<% else -%>
    # Run the generator again with the --webrat-matchers flag if you want to use webrat matchers
    assert_select "form", :action => <%= table_name %>_path, :method => "post" do
<% for attribute in output_attributes -%>
      assert_select "<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>", :name => "<%= file_name %>[<%= attribute.name %>]"
<% end -%>
    end
<% end -%>
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
my_generators-0.0.4 lib/generators/my_spec/scaffold/templates/new_spec.rb
my_generators-0.0.3 lib/generators/my_spec/scaffold/templates/new_spec.rb
my_generators-0.0.2 lib/generators/my_spec/scaffold/templates/new_spec.rb
my_generators-0.0.1 lib/generators/my_spec/scaffold/templates/new_spec.rb