24 lines
636 B
Ruby
24 lines
636 B
Ruby
# frozen_string_literal: true
|
|
require 'test_helper'
|
|
|
|
module Admin
|
|
class ResultControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get results list" do
|
|
auth_reviewer
|
|
get admin_results_url
|
|
assert_response :success
|
|
assert assigns(:candidates), '@candidates not present'
|
|
end
|
|
|
|
test "should get view" do
|
|
auth_reviewer
|
|
|
|
get admin_result_url(candidates(:richard).test_hash)
|
|
assert_response :success
|
|
assert assigns(:candidate), "@candidate not present"
|
|
assert assigns(:quiz), "@quiz not present"
|
|
assert assigns(:status), "@status not present"
|
|
end
|
|
end
|
|
end
|