Feature: Check Out / Check In Flow As a user I want to check items in and out to track custody. Scenario: Check out an item Given there is an item "Drill" in category "Tools" And I am on the "items" page When I click "Drill" Then I should see "Home" When I click the "Check Out" button And I select "lent" from "Reason" And I click the "Confirm" button Then I should see "Out" Scenario: Check in a checked-out item Given there is a checked-out item "Drill" And I am on the "items" page When I click "Drill" Then I should see "Out" And I should see "Check In"