skill-assessment-app/test/integration/question_flow_test.rb

38 lines
900 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'test_helper'
class QuestionFlowTest < ActionDispatch::IntegrationTest
test "should load the first question" do
2016-09-14 17:05:37 -05:00
auth_candidate candidates(:martha)
get question_path
assert_response :success
2017-03-20 10:57:50 -05:00
assert_select 'div', questions(:fed1).question
end
test "should load the summary" do
2016-09-14 17:05:37 -05:00
auth_candidate candidates(:dawn)
get summary_path
assert_response :success
2017-03-20 10:57:50 -05:00
assert_select 'h1', 'Almost done!'
end
test "can load specific question from summary" do
2016-09-14 17:05:37 -05:00
auth_candidate candidates(:dawn)
question = questions(:fed4)
get question_path(question.id)
assert_response :success
2017-03-20 10:57:50 -05:00
assert_select 'div', question.question
end
test 'juan should be on summary with 80% complete' do
2016-09-14 17:05:37 -05:00
auth_candidate candidates(:juan)
get summary_path
assert_response :success
2017-03-20 10:57:50 -05:00
assert_select 'aside span', '80%'
end
end