blob: e5636d18fb67652ef18b00d97216d7f34ad90a16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require "test_helper"
class Api::V1::UsersControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get api_v1_users_index_url
assert_response :success
end
test "should get new" do
get api_v1_users_new_url
assert_response :success
end
test "should get create" do
get api_v1_users_create_url
assert_response :success
end
test "should get delete" do
get api_v1_users_delete_url
assert_response :success
end
end
|