Sha256: f9b61c49fb12069ae86bc60f19af344657a3b385f277856198755b21319b1df0
Contents?: true
Size: 1004 Bytes
Versions: 1
Compression:
Stored size: 1004 Bytes
Contents
require 'spec_helper' <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%> describe "<%= ns_table_name %>/show" do before(:each) do @<%= ns_file_name %> = assign(:<%= ns_file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? '))' : ',' %> <% output_attributes.each_with_index do |attribute, attribute_index| -%> :<%= attribute.name %> => <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> <% if !output_attributes.empty? -%> )) <% end -%> end it "renders attributes in <p>" do render <% unless webrat? -%> # Run the generator again with the --webrat flag if you want to use webrat matchers <% end -%> <% for attribute in output_attributes -%> <% if webrat? -%> expect(rendered).to contain(<%= value_for(attribute) %>.to_s) <% else -%> expect(rendered).to match(/<%= eval(value_for(attribute)) %>/) <% end -%> <% end -%> end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-rails-3.0.0.beta1 | lib/generators/rspec/scaffold/templates/show_spec.rb |