skill-assessment-app/test/integration/question_flow_test.rb
Mark Moser 4bbd93ded1 rubocop noise: fixes FrozenStringLiteralComment
Adding the .ruby-verison file triggered previously un-run cops, specifically:

  This cop is designed to help upgrade to Ruby 3.0. It will add the
  comment `# frozen_string_literal: true` to the top of files to enable
  frozen string literals. Frozen string literals will be default in Ruby
  3.0. The comment will be added below a shebang and encoding comment. The
  frozen string literal comment is only valid in Ruby 2.3+.

More info on rubocop [Automatic-Corrections](https://github.com/bbatsov/rubocop/wiki/Automatic-Corrections)
2016-09-08 10:30:13 -05:00

44 lines
1.1 KiB
Ruby

# frozen_string_literal: true
require 'test_helper'
class QuestionFlowTest < ActionDispatch::IntegrationTest
def setup_auth candidate
post validate_candidate_url, params: { test_id: candidate.test_hash }
end
test "should load the first question" do
setup_auth candidates(:martha)
get question_path
assert_response :success
assert_select '.question-text', questions(:fed1).question
end
test "should load the summary" do
setup_auth candidates(:dawn)
get summary_path
assert_response :success
assert_select '.prft-heading', 'Almost done!'
end
test "can load specific question from summary" do
setup_auth candidates(:dawn)
question = questions(:fed4)
get question_path(question.id)
assert_response :success
assert_select '.question-text', question.question
# TODO: add in capybara and test form post
# assert_redirected summary_path
end
test 'juan should be on summary with 80% complete' do
setup_auth candidates(:juan)
get summary_path
assert_response :success
assert_select '.progress span', '80%'
end
end