main
 1require "test_helper"
 2
 3class UsersControllerTest < ActionDispatch::IntegrationTest
 4  setup do
 5    @user = users(:billie)
 6  end
 7
 8  test "should show user" do
 9    get user_url(@user)
10    assert_response :success
11  end
12end