Skip to content

Instantly share code, notes, and snippets.

@mikeadeleke
Created March 18, 2014 17:19
Show Gist options
  • Save mikeadeleke/9624735 to your computer and use it in GitHub Desktop.
Save mikeadeleke/9624735 to your computer and use it in GitHub Desktop.
Domi Rspec Tests
#show.html.erb for Appointments
<p><%= @appointment.time %></p>
<p><%= @appointment.listing.property.address %></p>
<p>Comments</p>
<% @appointment.comments.each do |comment| %>
<%= comment.comment %>
<% end %>
<%= form_for [@appointment, @comment] do |f| %>
<%= f.text_area :comment %>
<%= f.submit "New message" %>
<% end %>
<%= link_to "Back", dashboard_index_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment