skill-assessment-app/test/controllers/admin_controller_test.rb

16 lines
393 B
Ruby
Raw Normal View History

2016-08-17 17:49:09 -05:00
require 'test_helper'
class AdminControllerTest < ActionDispatch::IntegrationTest
2016-08-18 15:35:17 -05:00
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_url
assert_response :success
end
2016-08-17 17:49:09 -05:00
end