mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
19 lines
378 B
Ruby
19 lines
378 B
Ruby
require "test_helper"
|
|
|
|
class ApiTokensControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get api_tokens_index_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get create" do
|
|
get api_tokens_create_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get destroy" do
|
|
get api_tokens_destroy_url
|
|
assert_response :success
|
|
end
|
|
end
|