mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
16 lines
287 B
Ruby
16 lines
287 B
Ruby
require 'test_helper'
|
|
require 'support/stub_site_config_helper'
|
|
|
|
class IntegrationsControllerTest < ActionController::TestCase
|
|
include StubSiteConfigHelper
|
|
|
|
def setup
|
|
end
|
|
|
|
def test_page_load
|
|
login_as(:admin_user)
|
|
get :rest_api
|
|
assert_response :success
|
|
end
|
|
|
|
end
|