mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
15 lines
327 B
Ruby
15 lines
327 B
Ruby
require 'test_helper'
|
|
|
|
class IntegrationAuthorizationsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get create" do
|
|
get integration_authorizations_create_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get show" do
|
|
get integration_authorizations_show_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|