fixes #30 - edit from summary with out js
This commit is contained in:
34
test/integration/question_flow_test.rb
Normal file
34
test/integration/question_flow_test.rb
Normal file
@ -0,0 +1,34 @@
|
||||
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
|
||||
end
|
Reference in New Issue
Block a user