Sha256: 420e008694e79f57483552fa7ae8d9a122ee38c6e53504f92df79eec1cb81643

Contents?: true

Size: 868 Bytes

Versions: 3

Compression:

Stored size: 868 Bytes

Contents

require 'spec_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].include?(attribute.type) } -%>
describe "/<%= plural_name %>/show.html" do
  before do
    assigns[:<%= file_name %>] = @<%= file_name %> = stub_model(<%= class_name %><%= output_attributes.empty? ? ')' : ',' %>
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
      :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
<% end -%>
<% if !output_attributes.empty? -%>
    )
<% end -%>
  end

  subject do
    render "<%= plural_name %>/show.html"
    response
  end

  it "should render attributes in <p>" do
<% for attribute in output_attributes -%>
    should have_text(/<%= Regexp.escape(attribute.default.inspect).gsub(/^"|"$/, '')%>/)
<% end -%>
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
terraformation-0.2.2 rails_generators/terrascaffold/templates/view_show.html_spec.rb.erb
terraformation-0.2.1 rails_generators/terrascaffold/templates/view_show.html_spec.rb.erb
terraformation-0.2.0 rails_generators/terrascaffold/templates/view_show.html_spec.rb.erb