notebook/test/controllers/integration_authorizations_controller_test.rb
2020-03-02 23:10:26 -06:00

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