tracks/test/controllers/integrations_controller_test.rb

17 lines
287 B
Ruby
Raw Normal View History

2014-05-16 18:03:13 -04:00
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