how to write “Destroy kid” in cucumber

Scenario: User can delete kids
   Given I am on the kids page
   When I Destroy kid
   Then I should see "Kid deleted successfully"
   Then one kid should not exist



<h1>Listing kids</h1>

<tr>
 <th>Kid name</th>
 <th colspan=3>Action</th>
 </tr>
<% @kids.each do |kid| %>
  <tr>
    <td><%= kid.kid_name %></td>
    <td><%= link_to 'Show', kid %></td>
    <td><%= link_to 'Edit', edit_kid_path(kid) %></td>
  <td><%= link_to 'Destroy', kid, method: :delete,
                        data: { confirm: 'Are you sure?' } %></td>
 </tr>

<% end %>

<%= link_to 'New Kid', new_kid_path %>

what to write for this step:

When /^I Destroy kid$/ do
    #what to write......
end

-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to