lib/generators/rspec/scaffold/templates/index_spec.rb in rspec-rails-4.0.0.beta3 vs lib/generators/rspec/scaffold/templates/index_spec.rb in rspec-rails-4.0.0.beta4

- old
+ new

@@ -5,11 +5,11 @@ before(:each) do assign(:<%= table_name %>, [ <% [1,2].each_with_index do |id, model_index| -%> <%= class_name %>.create!(<%= output_attributes.empty? ? (model_index == 1 ? ')' : '),') : '' %> <% output_attributes.each_with_index do |attribute, attribute_index| -%> - :<%= attribute.name %> => <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> + <%= attribute.name %>: <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> <% if !output_attributes.empty? -%> <%= model_index == 1 ? ')' : '),' %> <% end -%> <% end -%> @@ -17,9 +17,9 @@ end it "renders a list of <%= ns_table_name %>" do render <% for attribute in output_attributes -%> - assert_select "tr>td", :text => <%= value_for(attribute) %>.to_s, :count => 2 + assert_select "tr>td", text: <%= value_for(attribute) %>.to_s, count: 2 <% end -%> end end