skill-assessment-app/test/controllers/admin/result_controller_test.rb

24 lines
636 B
Ruby
Raw Normal View History

2016-09-22 14:19:44 -05:00
# 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