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