You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
239 B
13 lines
239 B
6 years ago
|
require File.expand_path('../../test_helper.rb',__FILE__)
|
||
|
|
||
|
class UsersTest < ActionDispatch::IntegrationTest
|
||
|
test "register a user" do
|
||
|
end
|
||
|
test "get all users" do
|
||
|
get '/api/v1/users.json'
|
||
|
assert_response :success
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|