2020-05-01 19:28:55 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-06-12 20:03:43 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
|
|
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
2020-05-01 19:28:55 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
|
|
|
|
RSpec.describe "<%= ns_table_name %>/show", <%= type_metatag(:view) %> do
|
|
|
|
before(:each) do
|
|
|
|
@<%= ns_file_name %> = assign(:<%= ns_file_name %>, <%= class_name %>.create!(<%= '))' if 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
|
|
|
|
<% for attribute in output_attributes -%>
|
|
|
|
expect(rendered).to match(/<%= raw_value_for(attribute) %>/)
|
|
|
|
<% end -%>
|
|
|
|
end
|
|
|
|
end
|