skill-assessment-app/test/controllers/admin/dashboard_controller_test.rb
2016-09-22 16:29:19 -05:00

19 lines
474 B
Ruby

# frozen_string_literal: true
require 'test_helper'
module Admin
class DashboardControllerTest < ActionDispatch::IntegrationTest
test "dashboard should require auth" do
get admin_url
assert_redirected_to admin_login_url
end
test "should get dashboard" do
post admin_auth_url, params: { auth:
{ email: 'alan.admin@mailinator.com', password: 'password' } }
get admin_users_url
assert_response :success
end
end
end