Listing testies

<% @testies.each do |testy| %> <% end %>
First name Last name Address Some flag
<%=h testy.first_name %> <%=h testy.last_name %> <%=h testy.address %> <%=h testy.some_flag %> <%= link_to 'Show', testy %> <%= link_to 'Edit', edit_testy_path(testy) %> <%= link_to 'Destroy', testy, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New testy', new_testy_path %>