Skip to content

Commit

Permalink
Fixed failing tests and made suggested changes
Browse files Browse the repository at this point in the history
Made changes following product review
  • Loading branch information
syed87 committed Oct 17, 2023
1 parent 6080f62 commit 7bdcf5c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
<section class="app-further-information-request-item">
<h2 class="govuk-heading-s">Reason for request</h2>
<% if items.size == 1 %>
<p class="govuk-body">We were unable to verify the details for <%= items.first.work_history.school_name %></p>
<% elsif items.size > 1 %>
<p class="govuk-body">We were unable to verify the details for <%= items.first.work_history.school_name %>.</p>
<% else %>
<p class="govuk-body">We were unable to verify the details for:</p>
<ul class="govuk-list govuk-list--bullet">
<% items.each do |item| %>
<li><%= item.work_history.school_name %></li>
<% end %>
</ul>
<%end%>
<% end %>
<h2 class="govuk-heading-s">Note to applicant</h2>

<%= govuk_inset_text do %>
Expand All @@ -33,7 +33,7 @@
<% else %>
<% items.each do |item| %>
<section class="app-further-information-request-item">
<h3 class="govuk-heading-s"><%= t(item.failure_reason_key, scope: %i[assessor_interface assessment_sections failure_reasons as_statement]) %></h3>
<p class="govuk-body"><%= t(item.failure_reason_key, scope: %i[assessor_interface assessment_sections failure_reasons as_statement]) %></p>

<h2 class="govuk-heading-s">Note to applicant</h2>

Expand All @@ -45,9 +45,6 @@
<% end %>
<% end %>

<h2 class="govuk-heading-l">Send the further information request email</h2>
<p class="govuk-body">On the next screen, you’ll see a preview of the email.</p>

<div class="govuk-button-group">
<%= govuk_button_link_to "Continue", new_assessor_interface_application_form_assessment_further_information_request_path(@application_form, @assessment) %>
<%= govuk_button_link_to "Back to overview", assessor_interface_application_form_path(@application_form), secondary: true %>
Expand Down
2 changes: 1 addition & 1 deletion config/locales/assessor_interface.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ en:
registration_number: We could not find the applicant’s reference number, or the number was in the wrong format. The applicant will need to supply the number again.
registration_number_alternative: We could not find the applicant’s reference number. The applicant will need to upload written proof of recognition as a teacher instead.
satisfactory_evidence_work_history: The information provided on work history is not sufficient to award QTS.
school_details_cannot_be_verified: We could not verify the details of one of the schools that the applicant has entered.
school_details_cannot_be_verified: We could not verify school details entered by the applicant.
teaching_certificate_illegible: The teaching qualification certificate (or translation) is illegible or in a format that we cannot accept.
teaching_hours_not_fulfilled: The required teaching hours have not been fulfilled.
teaching_qualification: We were not provided with sufficient evidence to confirm the teaching qualification entered on the online application form.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,7 @@ def when_i_select_request_further_information

def and_i_see_the_further_information_request_items
expect(assessor_request_further_information_page.items.count).to eq(1)
expect(
assessor_request_further_information_page.items.first.heading.text,
).to eq(
expect(assessor_request_further_information_page).to have_content(
"Subjects entered are acceptable for QTS, but the uploaded qualifications do not match them.",
)
expect(
Expand Down
6 changes: 2 additions & 4 deletions spec/system/teacher_interface/further_information_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,7 @@ def and_i_see_the_check_your_answers_items
expect(rows.first.key.text).to eq(
"Tell us more about the subjects you can teach",
)
expect(rows.second.key.text).to eq(
"Add your work history contact’s details",
)
expect(rows.second.key.text).to eq("Add work history details")

expect(rows.last.key.text).to eq("Upload your identity document")
end
Expand Down Expand Up @@ -233,7 +231,7 @@ def text_check_answers_item

def work_history_task_list_item
teacher_further_information_requested_page.task_list.find_item(
"Add your work history contact’s details",
"Add work history details",
)
end

Expand Down

0 comments on commit 7bdcf5c

Please sign in to comment.