Given I set up a HomeController with an index action
class HomeController < ApplicationController def index @users = User.all end end