diff --git a/app/controllers/smart_answers_controller.rb b/app/controllers/smart_answers_controller.rb index bbb4f4c5264..0089f2b5d10 100644 --- a/app/controllers/smart_answers_controller.rb +++ b/app/controllers/smart_answers_controller.rb @@ -24,7 +24,7 @@ def show title: @presenter.current_node.title } } - if render_text?(@presenter) + if Rails.application.config.expose_govspeak format.text { render } @@ -58,10 +58,6 @@ def json_request? request.format == Mime::JSON end - def render_text?(presenter) - Rails.application.config.expose_govspeak && presenter.render_txt? - end - def with_format(format, &block) old_formats = self.formats self.formats = [format] diff --git a/app/presenters/checkbox_question_presenter.rb b/app/presenters/checkbox_question_presenter.rb index 879f1eeefcf..b2387f61cc0 100644 --- a/app/presenters/checkbox_question_presenter.rb +++ b/app/presenters/checkbox_question_presenter.rb @@ -1,4 +1,4 @@ -class CheckboxQuestionPresenter < QuestionPresenter +class CheckboxQuestionPresenter < QuestionWithOptionsPresenter def response_labels(values) values.split(',').map do |value| if value == SmartAnswer::Question::Checkbox::NONE_OPTION diff --git a/app/presenters/country_select_question_presenter.rb b/app/presenters/country_select_question_presenter.rb index 917e1ca8c9d..0b345a338ee 100644 --- a/app/presenters/country_select_question_presenter.rb +++ b/app/presenters/country_select_question_presenter.rb @@ -1,9 +1,11 @@ class CountrySelectQuestionPresenter < QuestionPresenter def response_label(value) - options.find { |option| option.slug == value }.name + options.find { |option| option.value == value }.label end def options - @node.options + @node.options.map do |option| + OpenStruct.new(label: option.name, value: option.slug) + end end end diff --git a/app/presenters/flow_presenter.rb b/app/presenters/flow_presenter.rb index 9ae87112c87..64411f0099e 100644 --- a/app/presenters/flow_presenter.rb +++ b/app/presenters/flow_presenter.rb @@ -33,10 +33,6 @@ def finished? current_node.outcome? end - def render_txt? - finished? || !started? - end - def current_state @current_state ||= @flow.process(all_responses) end diff --git a/app/presenters/multiple_choice_question_presenter.rb b/app/presenters/multiple_choice_question_presenter.rb index 00a462876ef..cbd9b419ee6 100644 --- a/app/presenters/multiple_choice_question_presenter.rb +++ b/app/presenters/multiple_choice_question_presenter.rb @@ -1,4 +1,4 @@ -class MultipleChoiceQuestionPresenter < QuestionPresenter +class MultipleChoiceQuestionPresenter < QuestionWithOptionsPresenter def response_label(value) options.find { |option| option.value == value }.label end diff --git a/app/presenters/question_presenter.rb b/app/presenters/question_presenter.rb index 5591ec0e876..00fe89770b1 100644 --- a/app/presenters/question_presenter.rb +++ b/app/presenters/question_presenter.rb @@ -46,18 +46,12 @@ def body(html: true) @renderer.content_for(:body, html: html) end - def post_body - @renderer.content_for(:post_body, html: true) + def post_body(html: true) + @renderer.content_for(:post_body, html: html) end def options - @node.options.map do |option| - OpenStruct.new(label: render_option(option), value: option) - end - end - - def render_option(key) - @renderer.option_text(key.to_sym) + [] end def to_response(input) diff --git a/app/presenters/question_with_options_presenter.rb b/app/presenters/question_with_options_presenter.rb new file mode 100644 index 00000000000..5871d5e74a9 --- /dev/null +++ b/app/presenters/question_with_options_presenter.rb @@ -0,0 +1,11 @@ +class QuestionWithOptionsPresenter < QuestionPresenter + def options + @node.options.map do |option| + OpenStruct.new(label: render_option(option), value: option) + end + end + + def render_option(key) + @renderer.option_text(key.to_sym) + end +end diff --git a/app/views/smart_answers/inputs/_country_select_question.html.erb b/app/views/smart_answers/inputs/_country_select_question.html.erb index 82c49deb890..32c39ea7b03 100644 --- a/app/views/smart_answers/inputs/_country_select_question.html.erb +++ b/app/views/smart_answers/inputs/_country_select_question.html.erb @@ -1 +1 @@ -<%= select_tag "response", options_from_collection_for_select(question.options, :slug, :name, prefill_value_for(question)) %> +<%= select_tag "response", options_from_collection_for_select(question.options, :value, :label, prefill_value_for(question)) %> diff --git a/app/views/smart_answers/show.text.erb b/app/views/smart_answers/show.text.erb index b139cab7a12..5e86706ae24 100644 --- a/app/views/smart_answers/show.text.erb +++ b/app/views/smart_answers/show.text.erb @@ -10,4 +10,20 @@ <%= @presenter.current_node.body(html: false) %> <%= @presenter.current_node.next_steps(html: false) %> +<% else %> +<%= @presenter.current_node.title %> + +<%= @presenter.current_node.body(html: false) %> + +<%= @presenter.current_node.hint %> + +<% @presenter.current_node.options.each do |option| %> + * <%= option.value %>: <%= option.label %> +<% end -%> + +<%= @presenter.current_node.label %> + +<%= @presenter.current_node.suffix_label %> + +<%= @presenter.current_node.post_body(html: false) %> <% end %> diff --git a/doc/viewing-templates-as-govspeak.md b/doc/viewing-templates-as-govspeak.md index 5afd39370b6..5f9d5f205de 100644 --- a/doc/viewing-templates-as-govspeak.md +++ b/doc/viewing-templates-as-govspeak.md @@ -1,14 +1,20 @@ # Viewing a Smart Answer as Govspeak -Seeing [Govspeak](https://github.com/alphagov/govspeak) markup of Smart Answer pages can be useful to content designers when preparing content change requests or developers inspecting generated Govspeak that later gets translated to HTML. This feature can be enabled by setting `EXPOSE_GOVSPEAK` to a non-empty value. It can be accessed by appending `.txt` to URLs (currently govspeak is available for landing and outcome pages, but not question pages). +Seeing [Govspeak](https://github.com/alphagov/govspeak) markup of Smart Answer pages can be useful to content designers when preparing content change requests or to developers inspecting generated Govspeak that later gets translated to HTML. -## In Development +This feature can be enabled by setting `EXPOSE_GOVSPEAK` to a non-empty value. It is enabled by default in the Integration environment and in Heroku apps deployed via the `startup_heroku.sh` script. + +The Govspeak version of the pages can be accessed by appending `.txt` to URLs. + +## In Development environment * [Marriage abroad landing page](http://smartanswers.dev.gov.uk/marriage-abroad.txt) +* [Marriage abroad question page](http://smart-answers.dev.gov.uk/marriage-abroad/y.txt) * [Marriage abroad outcome page](http://smartanswers.dev.gov.uk/marriage-abroad/y/afghanistan/uk/partner_other/opposite_sex.txt) ## In Integration environment -**Only outcomes pages can be rendered as Govspeak in Integration**. There's a [Trello card about this inconsistency](https://trello.com/c/qd5C7qDn/165-allow-landing-pages-to-be-rendered-as-govspeak-in-integration). +**It's not currently possible to access the Govspeak version of landing pages in the Integration environment.** There's a [Trello card about this inconsistency](https://trello.com/c/qd5C7qDn/165-allow-landing-pages-to-be-rendered-as-govspeak-in-integration). +* [Marriage abroad question page](https://www-origin.integration.publishing.service.gov.uk/marriage-abroad/y.txt) * [Marriage abroad outcome page](https://www-origin.integration.publishing.service.gov.uk/marriage-abroad/y/afghanistan/uk/partner_other/opposite_sex.txt) diff --git a/lib/smart_answer_test_helper.rb b/lib/smart_answer_test_helper.rb index ad2016c6edf..a650f259954 100644 --- a/lib/smart_answer_test_helper.rb +++ b/lib/smart_answer_test_helper.rb @@ -94,8 +94,8 @@ def path_to_outputs_for_flow artefacts_path.join(@flow_name) end - def save_output(responses, response, extension: 'txt') - filename = "#{responses.pop}.#{extension}" + def save_output(responses, response) + filename = "#{responses.pop}.txt" path_to_output_directory = path_to_outputs_for_flow.join(*responses) FileUtils.mkdir_p(path_to_output_directory) path_to_output_file = path_to_output_directory.join(filename) diff --git a/test/artefacts/additional-commodity-code/0.html b/test/artefacts/additional-commodity-code/0.html deleted file mode 100644 index 78d54bc7d5b..00000000000 --- a/test/artefacts/additional-commodity-code/0.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much sucrose, invert sugar or isoglucose does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0.txt b/test/artefacts/additional-commodity-code/0.txt new file mode 100644 index 00000000000..8bd5b55c999 --- /dev/null +++ b/test/artefacts/additional-commodity-code/0.txt @@ -0,0 +1,17 @@ +How much sucrose, invert sugar or isoglucose does the product contain? + + + +The values represent % by weight + + * 0: 0 - 4.99 + * 5: 5 - 29.99 + * 30: 30 - 49.99 + * 50: 50 - 69.99 + * 70: 70 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/0/0.html b/test/artefacts/additional-commodity-code/0/0.html deleted file mode 100644 index eaa14462094..00000000000 --- a/test/artefacts/additional-commodity-code/0/0.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much milk fat does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0/0.txt b/test/artefacts/additional-commodity-code/0/0.txt new file mode 100644 index 00000000000..5a2e88d7361 --- /dev/null +++ b/test/artefacts/additional-commodity-code/0/0.txt @@ -0,0 +1,24 @@ +How much milk fat does the product contain? + + + +The values represent % by weight + + * 0: 0 - 1.49 + * 1: 1.5 - 2.99 + * 3: 3 - 5.99 + * 6: 6 - 8.99 + * 9: 9 - 11.99 + * 12: 12 - 17.99 + * 18: 18 - 25.99 + * 26: 26 - 39.99 + * 40: 40 - 54.99 + * 55: 55 - 69.99 + * 70: 70 - 84.99 + * 85: 85 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/0/0/0.html b/test/artefacts/additional-commodity-code/0/0/0.html deleted file mode 100644 index cfdc30f1549..00000000000 --- a/test/artefacts/additional-commodity-code/0/0/0.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much milk proteins does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
How much starch or glucose does the product contain? - 0 - 4.99
How much sucrose, invert sugar or isoglucose does the product contain? - 0 - 4.99
How much milk fat does the product contain? - 0 - 1.49
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0/0/0.txt b/test/artefacts/additional-commodity-code/0/0/0.txt new file mode 100644 index 00000000000..9f2daa8bd94 --- /dev/null +++ b/test/artefacts/additional-commodity-code/0/0/0.txt @@ -0,0 +1,18 @@ +How much milk proteins does the product contain? + + + +The values represent % by weight + + * 0: 0 - 2.49 + * 2: 2.5 - 5.99 + * 6: 6 - 17.99 + * 18: 18 - 29.99 + * 30: 30 - 59.99 + * 60: 60 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/0/0/18.html b/test/artefacts/additional-commodity-code/0/0/18.html deleted file mode 100644 index d2b03a039a3..00000000000 --- a/test/artefacts/additional-commodity-code/0/0/18.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much milk proteins does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
How much starch or glucose does the product contain? - 0 - 4.99
How much sucrose, invert sugar or isoglucose does the product contain? - 0 - 4.99
How much milk fat does the product contain? - 18 - 25.99
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0/0/18.txt b/test/artefacts/additional-commodity-code/0/0/18.txt new file mode 100644 index 00000000000..32fa5d4cef6 --- /dev/null +++ b/test/artefacts/additional-commodity-code/0/0/18.txt @@ -0,0 +1,14 @@ +How much milk proteins does the product contain? + + + +The values represent % by weight + + * 0: 0-5.99 + * 6: 6 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/0/0/3.html b/test/artefacts/additional-commodity-code/0/0/3.html deleted file mode 100644 index 19966fa5778..00000000000 --- a/test/artefacts/additional-commodity-code/0/0/3.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much milk proteins does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
How much starch or glucose does the product contain? - 0 - 4.99
How much sucrose, invert sugar or isoglucose does the product contain? - 0 - 4.99
How much milk fat does the product contain? - 3 - 5.99
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0/0/3.txt b/test/artefacts/additional-commodity-code/0/0/3.txt new file mode 100644 index 00000000000..5e20400cb52 --- /dev/null +++ b/test/artefacts/additional-commodity-code/0/0/3.txt @@ -0,0 +1,15 @@ +How much milk proteins does the product contain? + + + +The values represent % by weight + + * 0: 0-2.49 + * 2: 2.5-11.99 + * 12: 12 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/0/0/6.html b/test/artefacts/additional-commodity-code/0/0/6.html deleted file mode 100644 index 3bf3351e618..00000000000 --- a/test/artefacts/additional-commodity-code/0/0/6.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much milk proteins does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
How much starch or glucose does the product contain? - 0 - 4.99
How much sucrose, invert sugar or isoglucose does the product contain? - 0 - 4.99
How much milk fat does the product contain? - 6 - 8.99
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0/0/6.txt b/test/artefacts/additional-commodity-code/0/0/6.txt new file mode 100644 index 00000000000..61273bf568f --- /dev/null +++ b/test/artefacts/additional-commodity-code/0/0/6.txt @@ -0,0 +1,15 @@ +How much milk proteins does the product contain? + + + +The values represent % by weight + + * 0: 0-3.99 + * 4: 4-14.99 + * 15: 15 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/0/0/9.html b/test/artefacts/additional-commodity-code/0/0/9.html deleted file mode 100644 index 9c185f349c9..00000000000 --- a/test/artefacts/additional-commodity-code/0/0/9.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much milk proteins does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
How much starch or glucose does the product contain? - 0 - 4.99
How much sucrose, invert sugar or isoglucose does the product contain? - 0 - 4.99
How much milk fat does the product contain? - 9 - 11.99
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/0/0/9.txt b/test/artefacts/additional-commodity-code/0/0/9.txt new file mode 100644 index 00000000000..fc32de4a515 --- /dev/null +++ b/test/artefacts/additional-commodity-code/0/0/9.txt @@ -0,0 +1,15 @@ +How much milk proteins does the product contain? + + + +The values represent % by weight + + * 0: 0-5.99 + * 6: 6-17.99 + * 18: 18 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/25.html b/test/artefacts/additional-commodity-code/25.html deleted file mode 100644 index ce7aa83f15e..00000000000 --- a/test/artefacts/additional-commodity-code/25.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much sucrose, invert sugar or isoglucose does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/25.txt b/test/artefacts/additional-commodity-code/25.txt new file mode 100644 index 00000000000..d36660d7a7a --- /dev/null +++ b/test/artefacts/additional-commodity-code/25.txt @@ -0,0 +1,16 @@ +How much sucrose, invert sugar or isoglucose does the product contain? + + + +The values represent % by weight + + * 0: 0 - 4.99 + * 5: 5 - 29.99 + * 30: 30 - 49.99 + * 50: 50 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/50.html b/test/artefacts/additional-commodity-code/50.html deleted file mode 100644 index 7cac2b4aa8b..00000000000 --- a/test/artefacts/additional-commodity-code/50.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much sucrose, invert sugar or isoglucose does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/50.txt b/test/artefacts/additional-commodity-code/50.txt new file mode 100644 index 00000000000..3061c417ed6 --- /dev/null +++ b/test/artefacts/additional-commodity-code/50.txt @@ -0,0 +1,15 @@ +How much sucrose, invert sugar or isoglucose does the product contain? + + + +The values represent % by weight + + * 0: 0 - 4.99 + * 5: 5 - 29.99 + * 30: 30 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/75.html b/test/artefacts/additional-commodity-code/75.html deleted file mode 100644 index 141e6774c86..00000000000 --- a/test/artefacts/additional-commodity-code/75.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much sucrose, invert sugar or isoglucose does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/75.txt b/test/artefacts/additional-commodity-code/75.txt new file mode 100644 index 00000000000..b05439118ce --- /dev/null +++ b/test/artefacts/additional-commodity-code/75.txt @@ -0,0 +1,14 @@ +How much sucrose, invert sugar or isoglucose does the product contain? + + + +The values represent % by weight + + * 0: 0 - 4.99 + * 5: 5 or more + + + + + + diff --git a/test/artefacts/additional-commodity-code/y.html b/test/artefacts/additional-commodity-code/y.html deleted file mode 100644 index 78a82951006..00000000000 --- a/test/artefacts/additional-commodity-code/y.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - Look up Meursing code - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much starch or glucose does the product contain? -

-
- -

The values represent % by weight

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/additional-commodity-code/y.txt b/test/artefacts/additional-commodity-code/y.txt new file mode 100644 index 00000000000..76b823e0325 --- /dev/null +++ b/test/artefacts/additional-commodity-code/y.txt @@ -0,0 +1,17 @@ +How much starch or glucose does the product contain? + + + +The values represent % by weight + + * 0: 0 - 4.99 + * 5: 5 - 24.99 + * 25: 25 - 49.99 + * 50: 50 - 74.99 + * 75: 75 or more + + + + + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment.html b/test/artefacts/am-i-getting-minimum-wage/current_payment.html deleted file mode 100644 index 0061ede4d84..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you an apprentice? -

-
- -

If you’re 19 or over and past your first year you don’t count as an apprentice for minimum wage purposes.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment.txt new file mode 100644 index 00000000000..3371655d99f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment.txt @@ -0,0 +1,16 @@ +Are you an apprentice? + + + +If you’re 19 or over and past your first year you don’t count as an apprentice for minimum wage purposes. + + * not_an_apprentice: Not an apprentice + * apprentice_under_19: Apprentice under 19 + * apprentice_over_19_first_year: Apprentice aged 19 and over in your first year + * apprentice_over_19_second_year_onwards: Apprentice 19 and over in your second year or onwards + + + + + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.html deleted file mode 100644 index 5a788b9afbb..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old are you? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.txt new file mode 100644 index 00000000000..c2454cbb753 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.txt @@ -0,0 +1,12 @@ +How old are you? + + + + + + + + +years old + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.html deleted file mode 100644 index e802e3d8e96..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you get paid? -

-
-
-

This is your pay period.

- - -
- -

You get paid every

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.txt new file mode 100644 index 00000000000..c3603888ec3 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.txt @@ -0,0 +1,13 @@ +How often do you get paid? + +This is your pay period. + + +You get paid every + + + + +days + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.html deleted file mode 100644 index a1a76253818..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours do you work during the pay period? -

-
- -

Don’t include any overtime or other extra hours you might work.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.txt new file mode 100644 index 00000000000..e90f58f1bce --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.txt @@ -0,0 +1,12 @@ +How many hours do you work during the pay period? + + + +Don’t include any overtime or other extra hours you might work. + + + + +hours + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html deleted file mode 100644 index 8b0ce89c429..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much does your employer charge for accommodation per day? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
How many hours do you work during the pay period? - 16.0
How much do you get paid before tax in the pay period? - £100
How many hours of overtime do you work during the pay period? - 0.0
Does your employer provide you with accommodation? - Yes, the accommodation is charged for
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt new file mode 100644 index 00000000000..f8ad4e86475 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt @@ -0,0 +1,12 @@ +How much does your employer charge for accommodation per day? + + + + + + + + +per day + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html deleted file mode 100644 index 2ff1760c687..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days per week do you live in the accommodation? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
How many hours do you work during the pay period? - 16.0
How much do you get paid before tax in the pay period? - £100
How many hours of overtime do you work during the pay period? - 0.0
Does your employer provide you with accommodation? - Yes, the accommodation is free
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt new file mode 100644 index 00000000000..c682ebbb414 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt @@ -0,0 +1,12 @@ +How many days per week do you live in the accommodation? + + + + + + + + +days per week + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html deleted file mode 100644 index 428a3320f25..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does your employer provide you with accommodation? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
How many hours do you work during the pay period? - 16.0
How much do you get paid before tax in the pay period? - £100
How many hours of overtime do you work during the pay period? - 0.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt new file mode 100644 index 00000000000..7a2c156ba11 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt @@ -0,0 +1,15 @@ +Does your employer provide you with accommodation? + + + + + + * no: No + * yes_free: Yes, the accommodation is free + * yes_charged: Yes, the accommodation is charged for + + + + + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html deleted file mode 100644 index 6703f9ecf53..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you get paid for overtime per hour? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
How many hours do you work during the pay period? - 16.0
How much do you get paid before tax in the pay period? - £100
How many hours of overtime do you work during the pay period? - 8.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt new file mode 100644 index 00000000000..25396836b7c --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt @@ -0,0 +1,12 @@ +How much do you get paid for overtime per hour? + + + + + + + + +per hour + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.html deleted file mode 100644 index c247ab3aeef..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours of overtime do you work during the pay period? -

-
- -

If you don’t work overtime enter 0

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
How many hours do you work during the pay period? - 16.0
How much do you get paid before tax in the pay period? - £100
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.txt new file mode 100644 index 00000000000..416746f665b --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.txt @@ -0,0 +1,12 @@ +How many hours of overtime do you work during the pay period? + + + +If you don’t work overtime enter 0 + + + + +hours + + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.html b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.html deleted file mode 100644 index 7ca1aa3813b..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you get paid before tax in the pay period? -

-
- -

Don’t include payments for overtime or anything extra to your pay, eg money for clothes or goods.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you're getting the National Minimum Wage or the National Living Wage
Are you an apprentice? - Not an apprentice
How old are you? - 25
How often do you get paid? - 1
How many hours do you work during the pay period? - 16.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.txt new file mode 100644 index 00000000000..577ef7c6409 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.txt @@ -0,0 +1,12 @@ +How much do you get paid before tax in the pay period? + + + +Don’t include payments for overtime or anything extra to your pay, eg money for clothes or goods. + + + + +in the pay period + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment.html b/test/artefacts/am-i-getting-minimum-wage/past_payment.html deleted file mode 100644 index 2c73b95de59..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which year would you like to check past payments for? -

-
- -

You can go back up to 6 years

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment.txt new file mode 100644 index 00000000000..82186ac8da4 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment.txt @@ -0,0 +1,19 @@ +Which year would you like to check past payments for? + + + +You can go back up to 6 years + + * 2015-10-01: Oct 2015 - Mar 2016 + * 2014-10-01: Oct 2014 - Sep 2015 + * 2013-10-01: Oct 2013 - Sep 2014 + * 2012-10-01: Oct 2012 - Sep 2013 + * 2011-10-01: Oct 2011 - Sep 2012 + * 2010-10-01: Oct 2010 - Sep 2011 + * 2009-10-01: Oct 2009 - Sep 2010 + + + + + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.html deleted file mode 100644 index 2becd1d1bdb..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Were you an apprentice at the time? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.txt new file mode 100644 index 00000000000..dd9e8d1e1ff --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.txt @@ -0,0 +1,15 @@ +Were you an apprentice at the time? + + + + + + * no: No + * apprentice_under_19: Apprentice under 19 + * apprentice_over_19: Apprentice aged 19 and over and in your first year + + + + + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.html deleted file mode 100644 index 3888ca294c5..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old were you at the time? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.txt new file mode 100644 index 00000000000..735e63b82c8 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.txt @@ -0,0 +1,12 @@ +How old were you at the time? + + + + + + + + +years old + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.html deleted file mode 100644 index 70bc06840df..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often did you get paid? -

-
-
-

This is your pay period.

- - -
- -

You get paid every

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.txt new file mode 100644 index 00000000000..48a87b33fb8 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.txt @@ -0,0 +1,13 @@ +How often did you get paid? + +This is your pay period. + + +You get paid every + + + + +days + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.html deleted file mode 100644 index b08bc957a20..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours did you work during the pay period? -

-
- -

Don’t include any overtime or other extra hours you worked.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.txt new file mode 100644 index 00000000000..913826c558c --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.txt @@ -0,0 +1,12 @@ +How many hours did you work during the pay period? + + + +Don’t include any overtime or other extra hours you worked. + + + + +hours + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html deleted file mode 100644 index 7c6f1ff8c98..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much did your employer charge for accommodation per day? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
How many hours did you work during the pay period? - 16.0
How much were you paid in the pay period? - £100
How many hours of overtime did you work during the pay period? - 0.0
Did your employer provide you with accommodation? - Yes, the accommodation was charged for
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt new file mode 100644 index 00000000000..b0bc17a683b --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt @@ -0,0 +1,12 @@ +How much did your employer charge for accommodation per day? + + + + + + + + +per day + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html deleted file mode 100644 index 5736e31ed4e..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days per week did you live in the accommodation? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
How many hours did you work during the pay period? - 16.0
How much were you paid in the pay period? - £100
How many hours of overtime did you work during the pay period? - 0.0
Did your employer provide you with accommodation? - Yes, the accommodation was free
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt new file mode 100644 index 00000000000..6048707f53e --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt @@ -0,0 +1,12 @@ +How many days per week did you live in the accommodation? + + + + + + + + +days per week + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html deleted file mode 100644 index 43308464b62..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did your employer provide you with accommodation? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
How many hours did you work during the pay period? - 16.0
How much were you paid in the pay period? - £100
How many hours of overtime did you work during the pay period? - 0.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt new file mode 100644 index 00000000000..4c4fafd7e48 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt @@ -0,0 +1,15 @@ +Did your employer provide you with accommodation? + + + + + + * no: No + * yes_free: Yes, the accommodation was free + * yes_charged: Yes, the accommodation was charged for + + + + + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html deleted file mode 100644 index fbc6ddb1cd2..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much did you get paid for overtime per hour? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
How many hours did you work during the pay period? - 16.0
How much were you paid in the pay period? - £100
How many hours of overtime did you work during the pay period? - 8.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt new file mode 100644 index 00000000000..8fd1c895469 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt @@ -0,0 +1,12 @@ +How much did you get paid for overtime per hour? + + + + + + + + +per hour + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.html deleted file mode 100644 index f15a95c64df..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours of overtime did you work during the pay period? -

-
- -

If you didn’t work overtime enter 0

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
How many hours did you work during the pay period? - 16.0
How much were you paid in the pay period? - £100
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.txt new file mode 100644 index 00000000000..3795773c941 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.txt @@ -0,0 +1,12 @@ +How many hours of overtime did you work during the pay period? + + + +If you didn’t work overtime enter 0 + + + + +hours + + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.html b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.html deleted file mode 100644 index e0facaf666d..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much were you paid in the pay period? -

-
- -

Don’t include payments for overtime or anything extra to your pay, eg money for clothes or goods.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If an employer owes you past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Were you an apprentice at the time? - No
How old were you at the time? - 25
How often did you get paid? - 1
How many hours did you work during the pay period? - 16.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.txt new file mode 100644 index 00000000000..201cc8b1102 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.txt @@ -0,0 +1,12 @@ +How much were you paid in the pay period? + + + +Don’t include payments for overtime or anything extra to your pay, eg money for clothes or goods. + + + + +in the pay period + + diff --git a/test/artefacts/am-i-getting-minimum-wage/y.html b/test/artefacts/am-i-getting-minimum-wage/y.html deleted file mode 100644 index 3378b8895e1..00000000000 --- a/test/artefacts/am-i-getting-minimum-wage/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Minimum wage calculator for workers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What would you like to check? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/am-i-getting-minimum-wage/y.txt b/test/artefacts/am-i-getting-minimum-wage/y.txt new file mode 100644 index 00000000000..410397360f6 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/y.txt @@ -0,0 +1,14 @@ +What would you like to check? + + + + + + * current_payment: If you're getting the National Minimum Wage or the National Living Wage + * past_payment: If an employer owes you past payments (before April 2016) + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default.html b/test/artefacts/benefit-cap-calculator/default.html deleted file mode 100644 index d9a5461b031..00000000000 --- a/test/artefacts/benefit-cap-calculator/default.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you receive Housing Benefit? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default.txt b/test/artefacts/benefit-cap-calculator/default.txt new file mode 100644 index 00000000000..ec9138419f3 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default.txt @@ -0,0 +1,14 @@ +Do you receive Housing Benefit? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes.html b/test/artefacts/benefit-cap-calculator/default/yes.html deleted file mode 100644 index b7a8feed069..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you qualify for Working Tax Credit? -

-
- -

You don't need to be getting Working Tax Credit, only qualify for it.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes.txt b/test/artefacts/benefit-cap-calculator/default/yes.txt new file mode 100644 index 00000000000..c1a05895947 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes.txt @@ -0,0 +1,14 @@ +Do you qualify for Working Tax Credit? + + + +You don't need to be getting Working Tax Credit, only qualify for it. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no.html b/test/artefacts/benefit-cap-calculator/default/yes/no.html deleted file mode 100644 index cde186c2bc7..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you or someone in your household get any of the following benefits? -

-
-
-
    -
  • Attendance Allowance
  • -
  • Disability Living Allowance
  • -
  • Industrial Injuries Benefit
  • -
  • Personal Independence Payment
  • -
  • Employment and Support Allowance (support component)
  • -
  • War Widow’s or War Widower’s Pension
  • -
  • Armed Forces Compensation Scheme
  • -
  • Armed Forces Independence Payment
  • -
- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no.txt b/test/artefacts/benefit-cap-calculator/default/yes/no.txt new file mode 100644 index 00000000000..0c7354c784a --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no.txt @@ -0,0 +1,22 @@ +Do you or someone in your household get any of the following benefits? + +- Attendance Allowance +- Disability Living Allowance +- Industrial Injuries Benefit +- Personal Independence Payment +- Employment and Support Allowance (support component) +- War Widow’s or War Widower’s Pension +- Armed Forces Compensation Scheme +- Armed Forces Independence Payment + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no.html deleted file mode 100644 index 3fc8058e14d..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you or someone in your household get any of the following benefits? -

-
- -

If you do not receive any of these click 'Next step'.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no.txt new file mode 100644 index 00000000000..2d6c2ac76f3 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no.txt @@ -0,0 +1,27 @@ +Do you or someone in your household get any of the following benefits? + + + +If you do not receive any of these click 'Next step'. + + * bereavement: Bereavement Allowance + * carers: Carer's Allowance + * child_benefit: Child Benefit + * child_tax: Child Tax Credit + * esa: Employment and Support Allowance + * guardian: Guardian's Allowance + * incapacity: Incapacity Benefit + * income_support: Income Support + * jsa: Jobseeker’s Allowance + * maternity: Maternity Allowance + * sda: Severe Disablement Allowance + * widowed_mother: Widowed Mother's Allowance + * widowed_parent: Widowed Parent's Allowance + * widow_pension: Widow's Pension + * widows_aged: Widow's Pension (age related) + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index faaf45e7887..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Widow's Pension (age related)? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
How much do you or someone in your household get for Jobseeker’s Allowance? - £50
How much do you or someone in your household get for Maternity Allowance? - £50
How much do you or someone in your household get for Severe Disability Allowance? - £50
How much do you or someone in your household get for Widow's Pension? - £50
How much do you or someone in your household get for Widowed Mother's Allowance? - £50
How much do you or someone in your household get for Widowed Parent's Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..a30a2ca4d03 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Widow's Pension (age related)? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index c0500b22f76..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Widowed Parent's Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
How much do you or someone in your household get for Jobseeker’s Allowance? - £50
How much do you or someone in your household get for Maternity Allowance? - £50
How much do you or someone in your household get for Severe Disability Allowance? - £50
How much do you or someone in your household get for Widow's Pension? - £50
How much do you or someone in your household get for Widowed Mother's Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..0752e25f43a --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Widowed Parent's Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 8d858d8c026..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Widowed Mother's Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
How much do you or someone in your household get for Jobseeker’s Allowance? - £50
How much do you or someone in your household get for Maternity Allowance? - £50
How much do you or someone in your household get for Severe Disability Allowance? - £50
How much do you or someone in your household get for Widow's Pension? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..73997142e05 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Widowed Mother's Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 69850567ab1..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Widow's Pension? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
How much do you or someone in your household get for Jobseeker’s Allowance? - £50
How much do you or someone in your household get for Maternity Allowance? - £50
How much do you or someone in your household get for Severe Disability Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..0ff66302f87 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Widow's Pension? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 8d240e99446..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Severe Disability Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
How much do you or someone in your household get for Jobseeker’s Allowance? - £50
How much do you or someone in your household get for Maternity Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..90523ad2d57 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Severe Disability Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 6ccee5ff9d0..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Maternity Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
How much do you or someone in your household get for Jobseeker’s Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..f06512df280 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Maternity Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 1ac5f9fb65c..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Jobseeker’s Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
How much do you or someone in your household get for Income Support? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..d45c763df48 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Jobseeker’s Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 7195b83eec0..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Income Support? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
How much do you or someone in your household get for Incapacity Benefit? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..610afd55dac --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Income Support? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index 07ea90757ea..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Incapacity Benefit? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
How much do you or someone in your household get for Guardian's Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..35f144f3a7c --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Incapacity Benefit? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.html deleted file mode 100644 index ee24a7f1d87..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Guardian's Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
How much do you or someone in your household get for Employment and Support Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..ab3762a48ac --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Guardian's Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.html deleted file mode 100644 index e84563cb966..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Employment and Support Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
How much do you or someone in your household get for Child Tax Credit? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.txt new file mode 100644 index 00000000000..e561b274585 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Employment and Support Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.html deleted file mode 100644 index 9a8547ab94a..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Child Tax Credit? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
How much do you or someone in your household get for Child Benefit? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.txt new file mode 100644 index 00000000000..3e915958cb1 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Child Tax Credit? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.html deleted file mode 100644 index dbdae2cf0a6..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Child Benefit? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
How much do you or someone in your household get for Carer's Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.txt new file mode 100644 index 00000000000..6f9801a73b5 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.0/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Child Benefit? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.html deleted file mode 100644 index b6985e7215b..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Carer's Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
  • Carer's Allowance
  • -
  • Child Benefit
  • -
  • Child Tax Credit
  • -
  • Employment and Support Allowance
  • -
  • Guardian's Allowance
  • -
  • Incapacity Benefit
  • -
  • Income Support
  • -
  • Jobseeker’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Widow's Pension
  • -
  • Widowed Mother's Allowance
  • -
  • Widowed Parent's Allowance
  • -
  • Widow's Pension (age related)
  • -
How much do you or someone in your household get for Bereavement Allowance? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.txt new file mode 100644 index 00000000000..f7c1e461ecc --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement,carers,child_benefit,child_tax,esa,guardian,incapacity,income_support,jsa,maternity,sda,widow_pension,widowed_mother,widowed_parent,widows_aged/50.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Carer's Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.html deleted file mode 100644 index 06ee0582df1..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Bereavement Allowance? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • Bereavement Allowance
  • -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.txt new file mode 100644 index 00000000000..8e31ce49586 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Bereavement Allowance? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/none.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/none.html deleted file mode 100644 index b5e2d801798..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/none.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you or someone in your household get for Housing Benefit? -

-
- -

You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • none
  • -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/none.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/none.txt new file mode 100644 index 00000000000..79e6a0ce3cf --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/none.txt @@ -0,0 +1,12 @@ +How much do you or someone in your household get for Housing Benefit? + + + +You need the whole amount before anything is taken off (eg utility bills or loan repayments) per week. You must enter the full amount you get for each benefit. + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.html b/test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.html deleted file mode 100644 index 5dfae2c43bd..00000000000 --- a/test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Now
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • none
  • -
How much do you or someone in your household get for Housing Benefit? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.txt b/test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.txt new file mode 100644 index 00000000000..461d887a438 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.txt @@ -0,0 +1,15 @@ +Are you: + + + + + + * single: Single + * couple: Living as a couple (with or without children) + * parent: A lone parent with one or more dependent children + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/future/yes/no/no.html b/test/artefacts/benefit-cap-calculator/future/yes/no/no.html deleted file mode 100644 index 5825c13b1f4..00000000000 --- a/test/artefacts/benefit-cap-calculator/future/yes/no/no.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you or someone in your household get any of the following benefits? -

-
- -

If you do not receive any of these click 'Next step'.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Autumn 2016
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/future/yes/no/no.txt b/test/artefacts/benefit-cap-calculator/future/yes/no/no.txt new file mode 100644 index 00000000000..008d692ba05 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/future/yes/no/no.txt @@ -0,0 +1,25 @@ +Do you or someone in your household get any of the following benefits? + + + +If you do not receive any of these click 'Next step'. + + * bereavement: Bereavement Allowance + * child_benefit: Child Benefit + * child_tax: Child Tax Credit + * esa: Employment and Support Allowance + * incapacity: Incapacity Benefit + * income_support: Income Support + * jsa: Jobseeker’s Allowance + * maternity: Maternity Allowance + * sda: Severe Disablement Allowance + * widowed_mother: Widowed Mother's Allowance + * widowed_parent: Widowed Parent's Allowance + * widow_pension: Widow's Pension + * widows_aged: Widow's Pension (age related) + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.html b/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.html deleted file mode 100644 index 55f9ba463c1..00000000000 --- a/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter your postcode -

-
-
-

eg SW1A 2AA

- -
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Autumn 2016
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • none
  • -
How much do you or someone in your household get for Housing Benefit? - £50
Are you: - Single
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.txt b/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.txt new file mode 100644 index 00000000000..74453305871 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.txt @@ -0,0 +1,13 @@ +Enter your postcode + +eg SW1A 2AA + + + + + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.html b/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.html deleted file mode 100644 index e077a828dee..00000000000 --- a/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which period do you want to check for? - Autumn 2016
Do you receive Housing Benefit? - Yes
Do you qualify for Working Tax Credit? - No
Do you or someone in your household get any of the following benefits? - No
Do you or someone in your household get any of the following benefits?
    -
  • none
  • -
How much do you or someone in your household get for Housing Benefit? - £50
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.txt b/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.txt new file mode 100644 index 00000000000..461d887a438 --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.txt @@ -0,0 +1,15 @@ +Are you: + + + + + + * single: Single + * couple: Living as a couple (with or without children) + * parent: A lone parent with one or more dependent children + + + + + + diff --git a/test/artefacts/benefit-cap-calculator/y.html b/test/artefacts/benefit-cap-calculator/y.html deleted file mode 100644 index b9f62147fb4..00000000000 --- a/test/artefacts/benefit-cap-calculator/y.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - Benefit cap calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which period do you want to check for? -

-
-
-

The benefit cap will change in autumn 2016.

- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/benefit-cap-calculator/y.txt b/test/artefacts/benefit-cap-calculator/y.txt new file mode 100644 index 00000000000..f9c4ae21b3c --- /dev/null +++ b/test/artefacts/benefit-cap-calculator/y.txt @@ -0,0 +1,15 @@ +Which period do you want to check for? + +The benefit cap will change in autumn 2016. + + + + + * default: Now + * future: Autumn 2016 + + + + + + diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.html b/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.html deleted file mode 100644 index afef7da09ff..00000000000 --- a/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - Calculate your agricultural worker holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What date will your holiday start? -

-
- -

This is the first day that you will take off work as leave

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.txt b/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.txt new file mode 100644 index 00000000000..6b3ad6d101e --- /dev/null +++ b/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.txt @@ -0,0 +1,12 @@ +What date will your holiday start? + + + +This is the first day that you will take off work as leave + + + + + + + diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.html b/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.html deleted file mode 100644 index 7c480169200..00000000000 --- a/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Calculate your agricultural worker holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days will you have worked between 1 October (the start of the leave year) and the start of your holiday? -

-
- -

This includes any days that you worked basic hours, took annual leave or were off sick (whether paid or not).

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.txt b/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.txt new file mode 100644 index 00000000000..df07ffd31b7 --- /dev/null +++ b/test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.txt @@ -0,0 +1,12 @@ +How many days will you have worked between 1 October (the start of the leave year) and the start of your holiday? + + + +This includes any days that you worked basic hours, took annual leave or were off sick (whether paid or not). + + +Total days worked for current employer + + + + diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.html b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.html deleted file mode 100644 index bead84127c3..00000000000 --- a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - Calculate your agricultural worker holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days do you work per week? -

-
-
-

Include guaranteed overtime hours if:

- -
    -
  • you have to work them as part of your contract
  • -
  • you’re paid for the time even if there’s no work for you to do
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.txt b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.txt new file mode 100644 index 00000000000..b73ef2eb4ae --- /dev/null +++ b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.txt @@ -0,0 +1,23 @@ +How many days do you work per week? + +Include guaranteed overtime hours if: + +- you have to work them as part of your contract +- you're paid for the time even if there’s no work for you to do + + + + + * 7-days: 7 days per week + * 6-days: 6 days per week + * 5-days: 5 days per week + * 4-days: 4 days per week + * 3-days: 3 days per week + * 2-days: 2 days per week + * 1-day: 1 day per week + + + + + + diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.html b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.html deleted file mode 100644 index 915e5d51fc7..00000000000 --- a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Calculate your agricultural worker holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Have you worked for the same employer for a full year? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.txt b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.txt new file mode 100644 index 00000000000..c5c6ca447df --- /dev/null +++ b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.txt @@ -0,0 +1,14 @@ +Have you worked for the same employer for a full year? + + + + + + * same-employer: Yes + * multiple-employers: No + + + + + + diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.html b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.html deleted file mode 100644 index ac48151fba2..00000000000 --- a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Calculate your agricultural worker holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many weeks have you worked continuously for your current employer? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.txt b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.txt new file mode 100644 index 00000000000..2bb844c7acb --- /dev/null +++ b/test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.txt @@ -0,0 +1,12 @@ +How many weeks have you worked continuously for your current employer? + + + + + + +Weeks worked at current employer + + + + diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/y.html b/test/artefacts/calculate-agricultural-holiday-entitlement/y.html deleted file mode 100644 index 9e998a14d9f..00000000000 --- a/test/artefacts/calculate-agricultural-holiday-entitlement/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Calculate your agricultural worker holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you work the same number of days each week? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-agricultural-holiday-entitlement/y.txt b/test/artefacts/calculate-agricultural-holiday-entitlement/y.txt new file mode 100644 index 00000000000..5aadd0b1524 --- /dev/null +++ b/test/artefacts/calculate-agricultural-holiday-entitlement/y.txt @@ -0,0 +1,14 @@ +Do you work the same number of days each week? + + + + + + * same-number-of-days: Yes + * different-number-of-days: No + + + + + + diff --git a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01.html b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01.html deleted file mode 100644 index bda0ea1dec1..00000000000 --- a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Calculate your employee's statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old was your employee on the date they were made redundant? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01.txt b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01.txt new file mode 100644 index 00000000000..1f6e8889fbf --- /dev/null +++ b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01.txt @@ -0,0 +1,12 @@ +How old was your employee on the date they were made redundant? + + + + + + + + +years old + + diff --git a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.html b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.html deleted file mode 100644 index a4d06356029..00000000000 --- a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Calculate your employee's statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Number of years they’ve worked for you -

-
- -

Only count full years of service. For example, 3 years and 9 months count as 3 years.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.txt b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.txt new file mode 100644 index 00000000000..d8a2ff63d5b --- /dev/null +++ b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.txt @@ -0,0 +1,12 @@ +Number of years they’ve worked for you + + + +Only count full years of service. For example, 3 years and 9 months count as 3 years. + + + + +full years worked + + diff --git a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.html b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.html deleted file mode 100644 index cbe0bd23d4a..00000000000 --- a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Calculate your employee's statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is their weekly pay before tax and any other deductions? -

-
- -

Examples of other deductions include student loans and child maintenance.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.txt b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.txt new file mode 100644 index 00000000000..ce3973a3c1a --- /dev/null +++ b/test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.txt @@ -0,0 +1,12 @@ +What is their weekly pay before tax and any other deductions? + + + +Examples of other deductions include student loans and child maintenance. + + + + +per week + + diff --git a/test/artefacts/calculate-employee-redundancy-pay/y.html b/test/artefacts/calculate-employee-redundancy-pay/y.html deleted file mode 100644 index 7c964b9ce7c..00000000000 --- a/test/artefacts/calculate-employee-redundancy-pay/y.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Calculate your employee's statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What date was your employee made redundant? -

-
- -

Use the original redundancy date even if their notice is brought forward, they’re paid in lieu of notice or made redundant after trialing a new job.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-employee-redundancy-pay/y.txt b/test/artefacts/calculate-employee-redundancy-pay/y.txt new file mode 100644 index 00000000000..f8b1c57dd38 --- /dev/null +++ b/test/artefacts/calculate-employee-redundancy-pay/y.txt @@ -0,0 +1,12 @@ +What date was your employee made redundant? + + + +Use the original redundancy date even if their notice is brought forward, they’re paid in lieu of notice or made redundant after trialing a new job. + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/y.html b/test/artefacts/calculate-married-couples-allowance/y.html deleted file mode 100644 index f8cb6628d1c..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/y.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Were you or your partner born before 6 April 1935? -

-
- -

You must be married or in a civil partnership to qualify.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/y.txt b/test/artefacts/calculate-married-couples-allowance/y.txt new file mode 100644 index 00000000000..f756809104b --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/y.txt @@ -0,0 +1,14 @@ +Were you or your partner born before 6 April 1935? + + + +You must be married or in a civil partnership to qualify. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes.html b/test/artefacts/calculate-married-couples-allowance/yes.html deleted file mode 100644 index 793a1b458b7..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did you marry before 5 December 2005? -

-
- -

Before this date the husband's income is used to work out your allowance, after this date it's the income of the highest earner.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes.txt b/test/artefacts/calculate-married-couples-allowance/yes.txt new file mode 100644 index 00000000000..aa855a0f2b1 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes.txt @@ -0,0 +1,14 @@ +Did you marry before 5 December 2005? + + + +Before this date the husband's income is used to work out your allowance, after this date it's the income of the highest earner. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/no.html b/test/artefacts/calculate-married-couples-allowance/yes/no.html deleted file mode 100644 index c4eccafbfa5..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/no.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's the highest earner's date of birth? -

-
- -

We need your date of birth to work out your personal allowance (how much of your income is tax-free).

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/no.txt b/test/artefacts/calculate-married-couples-allowance/yes/no.txt new file mode 100644 index 00000000000..501ebcc18e0 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/no.txt @@ -0,0 +1,12 @@ +What's the highest earner's date of birth? + + + +We need your date of birth to work out your personal allowance (how much of your income is tax-free). + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.html b/test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.html deleted file mode 100644 index ab7ba3d7c11..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's the highest earner's yearly income? -

-
- -

Add up your taxable income, eg earnings, pensions and any taxable benefits, eg Carer's Allowance.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.txt b/test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.txt new file mode 100644 index 00000000000..155ccf8cb54 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.txt @@ -0,0 +1,12 @@ +What's the highest earner's yearly income? + + + +Add up your taxable income, eg earnings, pensions and any taxable benefits, eg Carer's Allowance. + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes.html b/test/artefacts/calculate-married-couples-allowance/yes/yes.html deleted file mode 100644 index 27b3a997d45..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/yes.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's the husband's date of birth? -

-
- -

We need your date of birth to work out your personal allowance (how much of your income is tax-free).

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes.txt b/test/artefacts/calculate-married-couples-allowance/yes/yes.txt new file mode 100644 index 00000000000..07df711c18c --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/yes.txt @@ -0,0 +1,12 @@ +What's the husband's date of birth? + + + +We need your date of birth to work out your personal allowance (how much of your income is tax-free). + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.html b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.html deleted file mode 100644 index 327168c4825..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's the husband's yearly income? -

-
- -

Add up your taxable income, eg earnings, pensions and any taxable benefits, eg Carer’s Allowance.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.txt b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.txt new file mode 100644 index 00000000000..9de28226045 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.txt @@ -0,0 +1,12 @@ +What's the husband's yearly income? + + + +Add up your taxable income, eg earnings, pensions and any taxable benefits, eg Carer’s Allowance. + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.html b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.html deleted file mode 100644 index 74dbdda2405..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to pay into a pension where your contributions are made before tax is taken away? -

-
-
-

Enter the total you expect to pay for the whole tax year into:

- -
    -
  • pension schemes where your contributions are paid before your income is taxed (called ‘net pay arrangements’)
  • -
  • retirement annuity contracts (called ‘gross contributions’)
  • -
- - -
- -

If none, please enter 0.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Were you or your partner born before 6 April 1935? - Yes
Did you marry before 5 December 2005? - Yes
What's the husband's date of birth? - 1 January 1950
What's the husband's yearly income? - £27,701
Are you paying into a pension? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.txt b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.txt new file mode 100644 index 00000000000..a2879da5cae --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.txt @@ -0,0 +1,16 @@ +How much do you expect to pay into a pension where your contributions are made before tax is taken away? + +Enter the total you expect to pay for the whole tax year into: + +- pension schemes where your contributions are paid before your income is taxed (called ‘net pay arrangements’) +- retirement annuity contracts (called ‘gross contributions’) + + +If none, please enter 0. + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.html b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.html deleted file mode 100644 index 88d6dad4fc4..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to donate to charity through Gift Aid during the entire tax year? -

-
- -

Only enter what you pay - don’t include any tax relief. If none, please enter 0.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Were you or your partner born before 6 April 1935? - Yes
Did you marry before 5 December 2005? - Yes
What's the husband's date of birth? - 1 January 1950
What's the husband's yearly income? - £27,701
Are you paying into a pension? - Yes
How much do you expect to pay into a pension where your contributions are made before tax is taken away? - £10,000
How much do you expect to pay into a pension this tax year where your pension provider claims tax relief for you? - £5,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.txt b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.txt new file mode 100644 index 00000000000..a01343edab1 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.txt @@ -0,0 +1,12 @@ +How much do you expect to donate to charity through Gift Aid during the entire tax year? + + + +Only enter what you pay - don’t include any tax relief. If none, please enter 0. + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.html b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.html deleted file mode 100644 index ecdcf03e2df..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to pay into a pension this tax year where your pension provider claims tax relief for you? -

-
- -

Only enter what you pay - don’t include the tax relief. If none, please enter 0.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Were you or your partner born before 6 April 1935? - Yes
Did you marry before 5 December 2005? - Yes
What's the husband's date of birth? - 1 January 1950
What's the husband's yearly income? - £27,701
Are you paying into a pension? - Yes
How much do you expect to pay into a pension where your contributions are made before tax is taken away? - £10,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.txt b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.txt new file mode 100644 index 00000000000..99f61e40ca4 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.txt @@ -0,0 +1,12 @@ +How much do you expect to pay into a pension this tax year where your pension provider claims tax relief for you? + + + +Only enter what you pay - don’t include the tax relief. If none, please enter 0. + + + + + + + diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.html b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.html deleted file mode 100644 index 96d2bc34a11..00000000000 --- a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Calculate your Married Couple's Allowance - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you paying into a pension? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Were you or your partner born before 6 April 1935? - Yes
Did you marry before 5 December 2005? - Yes
What's the husband's date of birth? - 1 January 1950
What's the husband's yearly income? - £27,701
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.txt b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.txt new file mode 100644 index 00000000000..bc2b9dc3039 --- /dev/null +++ b/test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.txt @@ -0,0 +1,14 @@ +Are you paying into a pension? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.html deleted file mode 100644 index 6854e1338ce..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does your employee routinely work different days of the week? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.txt new file mode 100644 index 00000000000..6e745813d5b --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.txt @@ -0,0 +1,14 @@ +Does your employee routinely work different days of the week? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.html deleted file mode 100644 index 3e361bf180a..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- During their most recent period of sickness, when did your employee first become sick? -

-
- -

This includes non-working days and bank holidays.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.txt new file mode 100644 index 00000000000..09fda53e073 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.txt @@ -0,0 +1,12 @@ +During their most recent period of sickness, when did your employee first become sick? + + + +This includes non-working days and bank holidays. + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.html deleted file mode 100644 index 87136a4c266..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter the last day of sickness -

-
- -

This can include non-working days and bank holidays

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.txt new file mode 100644 index 00000000000..592b9cc011e --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.txt @@ -0,0 +1,12 @@ +Enter the last day of sickness + + + +This can include non-working days and bank holidays + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.html deleted file mode 100644 index e9275b9731f..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? -

-
- - - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.txt new file mode 100644 index 00000000000..448738e1907 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.txt @@ -0,0 +1,17 @@ +Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? + +These are called ‘linked Periods of Incapacity for Work (PIW)’. Check if an employee’s [PIW links to a previous one.](/government/publications/statutory-sick-pay-tables-for-linking-periods-of-incapacity-for-work) + +*[PIW]: Period of Incapacity for Work + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.html deleted file mode 100644 index 18da8c01ca7..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter the start date for this linked period of sickness. -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.txt new file mode 100644 index 00000000000..8840ded583a --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.txt @@ -0,0 +1,12 @@ +Enter the start date for this linked period of sickness. + + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01.html deleted file mode 100644 index b23c2c3ce8f..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter the end date for this linked period of sickness. -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01.txt new file mode 100644 index 00000000000..302fd2caeda --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01.txt @@ -0,0 +1,12 @@ +Enter the end date for this linked period of sickness. + + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15.html deleted file mode 100644 index ca0b3543a93..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- On 1 February 2013 had you paid your employee at least 8 weeks of earnings? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15.txt new file mode 100644 index 00000000000..5ae3e987f2a --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15.txt @@ -0,0 +1,15 @@ +On 1 February 2013 had you paid your employee at least 8 weeks of earnings? + + + + + + * eight_weeks_more: Yes, paid at least 8 weeks earnings + * eight_weeks_less: No, paid less than 8 weeks earnings + * before_payday: No, employee is new and fell sick before their first payday + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly.html deleted file mode 100644 index 0674768d84d..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter how much you would have paid the employee on their first payday if they hadn’t been sick. -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - No, employee is new and fell sick before their first payday
How often do you pay the employee? - Weekly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly.txt new file mode 100644 index 00000000000..5f6bfbc9486 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly.txt @@ -0,0 +1,12 @@ +Enter how much you would have paid the employee on their first payday if they hadn’t been sick. + + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly/2000.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly/2000.html deleted file mode 100644 index fc2496d0d14..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly/2000.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days does the period represented by these earnings cover? -

-
- -

If it’s 2 weeks and 3 days enter ‘17’.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - No, employee is new and fell sick before their first payday
How often do you pay the employee? - Weekly
Enter how much you would have paid the employee on their first payday if they hadn’t been sick. - £2,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly/2000.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly/2000.txt new file mode 100644 index 00000000000..f18acf65325 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/before_payday/weekly/2000.txt @@ -0,0 +1,12 @@ +How many days does the period represented by these earnings cover? + + + +If it’s 2 weeks and 3 days enter ‘17’. + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less.html deleted file mode 100644 index 045fa2e86db..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter the total earnings paid before 1 February 2013. -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - No, paid less than 8 weeks earnings
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less.txt new file mode 100644 index 00000000000..aa9b1934986 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less.txt @@ -0,0 +1,12 @@ +Enter the total earnings paid before 1 February 2013. + + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less/3000.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less/3000.html deleted file mode 100644 index 2971e448c57..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less/3000.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days does the period represented by these earnings cover? -

-
- -

If it’s 2 weeks and 3 days enter ‘17’.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - No, paid less than 8 weeks earnings
Enter the total earnings paid before 1 February 2013. - £3,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less/3000.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less/3000.txt new file mode 100644 index 00000000000..f18acf65325 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_less/3000.txt @@ -0,0 +1,12 @@ +How many days does the period represented by these earnings cover? + + + +If it’s 2 weeks and 3 days enter ‘17’. + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more.html deleted file mode 100644 index a40448eb733..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay the employee? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - Yes, paid at least 8 weeks earnings
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more.txt new file mode 100644 index 00000000000..4ed48c3a9c4 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more.txt @@ -0,0 +1,17 @@ +How often do you pay the employee? + + + + + + * weekly: Weekly + * fortnightly: Every 2 weeks + * every_4_weeks: Every 4 weeks + * monthly: Monthly - eg last day or Friday of a month + * irregularly: Irregularly + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly.html deleted file mode 100644 index 2daac04c806..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday before 1 February 2013? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - Yes, paid at least 8 weeks earnings
How often do you pay the employee? - Weekly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly.txt new file mode 100644 index 00000000000..75fe479e89e --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly.txt @@ -0,0 +1,12 @@ +What was the last normal payday before 1 February 2013? + + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31.html deleted file mode 100644 index 1d17188f771..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday on or before 3 February 2013? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - Yes, paid at least 8 weeks earnings
How often do you pay the employee? - Weekly
What was the last normal payday before 1 February 2013? - 31 March 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31.txt new file mode 100644 index 00000000000..36c216a7d77 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31.txt @@ -0,0 +1,12 @@ +What was the last normal payday on or before 3 February 2013? + + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31.html deleted file mode 100644 index 679dc6de5b4..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter the total amount (before deductions like Income Tax and National Insurance) of your employee’s earnings on paydays between 1 February 2013 and 31 March 2013. -

-
- - - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - Yes, paid at least 8 weeks earnings
How often do you pay the employee? - Weekly
What was the last normal payday before 1 February 2013? - 31 March 2013
What was the last normal payday on or before 3 February 2013? - 31 January 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31.txt new file mode 100644 index 00000000000..0119f5a37a9 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31.txt @@ -0,0 +1,13 @@ +Enter the total amount (before deductions like Income Tax and National Insurance) of your employee’s earnings on paydays between 1 February 2013 and 31 March 2013. + +Different rules apply for [directors of limited companies incorporated before 1 October 2009](/statutory-sick-pay-how-different-employment-types-affect-what-you-pay) + + + + + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31/200.html b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31/200.html deleted file mode 100644 index 55e44110f1d..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31/200.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which days of the week do they usually work? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is your employee getting any of the following?
    -
  • Statutory Adoption Pay
  • -
  • Statutory Paternity Pay
  • -
Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? - Yes
Does your employee routinely work different days of the week? - No
During their most recent period of sickness, when did your employee first become sick? - 2 April 2013
Enter the last day of sickness - 10 April 2013
Was your employee off sick within the previous 8 weeks for 4 or more days (including non-working days, weekends and holidays)? - Yes
Enter the start date for this linked period of sickness. - 1 February 2013
Enter the end date for this linked period of sickness. - 15 February 2013
On 1 February 2013 had you paid your employee at least 8 weeks of earnings? - Yes, paid at least 8 weeks earnings
How often do you pay the employee? - Weekly
What was the last normal payday before 1 February 2013? - 31 March 2013
What was the last normal payday on or before 3 February 2013? - 31 January 2013
Enter the total amount (before deductions like Income Tax and National Insurance) of your employee’s earnings on paydays between 1 February 2013 and 31 March 2013. - £200
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31/200.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31/200.txt new file mode 100644 index 00000000000..dcf155e5ec8 --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes/2013-02-01/2013-02-15/eight_weeks_more/weekly/2013-03-31/2013-01-31/200.txt @@ -0,0 +1,19 @@ +Which days of the week do they usually work? + + + + + + * 1: Monday + * 2: Tuesday + * 3: Wednesday + * 4: Thursday + * 5: Friday + * 6: Saturday + * 0: Sunday + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.html b/test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.html deleted file mode 100644 index 0825bef588c..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.txt b/test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.txt new file mode 100644 index 00000000000..f7db2dff95a --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.txt @@ -0,0 +1,14 @@ +Did your employee tell you they were sick and unable to come into work within 7 days of their first day of absence (or within your time limit)? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-statutory-sick-pay/y.html b/test/artefacts/calculate-statutory-sick-pay/y.html deleted file mode 100644 index 1b9d44fd789..00000000000 --- a/test/artefacts/calculate-statutory-sick-pay/y.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - Calculate your employee's statutory sick pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is your employee getting any of the following? -

-
- -

If none apply just click ‘Next step’

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-statutory-sick-pay/y.txt b/test/artefacts/calculate-statutory-sick-pay/y.txt new file mode 100644 index 00000000000..ebed89c0c7b --- /dev/null +++ b/test/artefacts/calculate-statutory-sick-pay/y.txt @@ -0,0 +1,17 @@ +Is your employee getting any of the following? + + + +If none apply just click ‘Next step’ + + * statutory_maternity_pay: Statutory Maternity Pay + * maternity_allowance: Maternity Allowance + * statutory_paternity_pay: Statutory Paternity Pay + * statutory_adoption_pay: Statutory Adoption Pay + * additional_statutory_paternity_pay: Additional Statutory Paternity Pay + + + + + + diff --git a/test/artefacts/calculate-your-child-maintenance/pay.html b/test/artefacts/calculate-your-child-maintenance/pay.html deleted file mode 100644 index 5b7ba6a439c..00000000000 --- a/test/artefacts/calculate-your-child-maintenance/pay.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - Child maintenance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many children are you paying child maintenance for? -

-
- -

Enter the total number of children - including children that you have family based arrangements for. They will be included in the calculation and you'll need to supply information about them when arranging Child Maintenance.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-child-maintenance/pay.txt b/test/artefacts/calculate-your-child-maintenance/pay.txt new file mode 100644 index 00000000000..b1fb1f9280f --- /dev/null +++ b/test/artefacts/calculate-your-child-maintenance/pay.txt @@ -0,0 +1,15 @@ +How many children are you paying child maintenance for? + + + +Enter the total number of children - including children that you have family based arrangements for. They will be included in the calculation and you'll need to supply information about them when arranging Child Maintenance. + + * 1_child: 1 + * 2_children: 2 + * 3_children: 3 or more + + + + + + diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child.html b/test/artefacts/calculate-your-child-maintenance/pay/1_child.html deleted file mode 100644 index f58598fe808..00000000000 --- a/test/artefacts/calculate-your-child-maintenance/pay/1_child.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - Child maintenance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you get any of these benefits? -

-
-
-
    -
  • Income Support
  • -
  • income-based Jobseeker’s Allowance
  • -
  • income-related Employment and Support Allowance
  • -
  • Pension Credit
  • -
  • contribution-based Jobseeker’s Allowance
  • -
  • contribution-based Employment and Support Allowance
  • -
  • State Pension
  • -
  • Incapacity Benefit
  • -
  • Training Allowance
  • -
  • Armed Forces Compensation Scheme payments
  • -
  • War Disablement Pension
  • -
  • Bereavement Allowance
  • -
  • Carer’s Allowance
  • -
  • Maternity Allowance
  • -
  • Severe Disablement Allowance
  • -
  • Industrial Injuries Disablement Benefit
  • -
  • Widowed Parent’s Allowance
  • -
  • Widow’s pension
  • -
  • Universal Credit with no earned income
  • -
- - -
- -

In Scotland, this also includes: Skillseekers training, War Widow’s, Widower’s or Surviving Civil Partner’s Pension

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child.txt b/test/artefacts/calculate-your-child-maintenance/pay/1_child.txt new file mode 100644 index 00000000000..5b396af72f2 --- /dev/null +++ b/test/artefacts/calculate-your-child-maintenance/pay/1_child.txt @@ -0,0 +1,33 @@ +Do you get any of these benefits? + +- Income Support +- income-based Jobseeker’s Allowance +- income-related Employment and Support Allowance +- Pension Credit +- contribution-based Jobseeker’s Allowance +- contribution-based Employment and Support Allowance +- State Pension +- Incapacity Benefit +- Training Allowance +- Armed Forces Compensation Scheme payments +- War Disablement Pension +- Bereavement Allowance +- Carer’s Allowance +- Maternity Allowance +- Severe Disablement Allowance +- Industrial Injuries Disablement Benefit +- Widowed Parent’s Allowance +- Widow’s pension +- Universal Credit with no earned income + + +In Scotland, this also includes: Skillseekers training, War Widow’s, Widower’s or Surviving Civil Partner’s Pension + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child/no.html b/test/artefacts/calculate-your-child-maintenance/pay/1_child/no.html deleted file mode 100644 index f294dfa45b1..00000000000 --- a/test/artefacts/calculate-your-child-maintenance/pay/1_child/no.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Child maintenance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your weekly gross income? -

-
- -

This is income before tax and National Insurance but after pension contributions.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child/no.txt b/test/artefacts/calculate-your-child-maintenance/pay/1_child/no.txt new file mode 100644 index 00000000000..2195b6f4d6f --- /dev/null +++ b/test/artefacts/calculate-your-child-maintenance/pay/1_child/no.txt @@ -0,0 +1,12 @@ +What is your weekly gross income? + + + +This is income before tax and National Insurance but after pension contributions. + + + + +per week + + diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.html b/test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.html deleted file mode 100644 index 25e5c35b646..00000000000 --- a/test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Child maintenance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many other children live in your household? -

-
- -

Enter 0 if no children live there. Don’t count the children child maintenance has to be paid for.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you be paying or receiving child maintenance payments? - paying
How many children are you paying child maintenance for? - 1
Do you get any of these benefits? - No
What is your weekly gross income? - £150
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.txt b/test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.txt new file mode 100644 index 00000000000..d868d629647 --- /dev/null +++ b/test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.txt @@ -0,0 +1,12 @@ +How many other children live in your household? + + + +Enter 0 if no children live there. Don’t count the children child maintenance has to be paid for. + + + + + + + diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.html b/test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.html deleted file mode 100644 index 3c305e8cb17..00000000000 --- a/test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - Child maintenance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- On average, how many nights a year do the children stay over with you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.txt b/test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.txt new file mode 100644 index 00000000000..5c15c16a50d --- /dev/null +++ b/test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.txt @@ -0,0 +1,17 @@ +On average, how many nights a year do the children stay over with you? + + + + + + * 0: Less than 52 (less than once a week) + * 1: 52 to 103 (1 to 2 nights a week) + * 2: 104 to 155 (2 to 3 nights a week) + * 3: 156 to 174 (approx. 3 nights a week) + * 4: 175 or more (more than 3 nights a week) + + + + + + diff --git a/test/artefacts/calculate-your-child-maintenance/y.html b/test/artefacts/calculate-your-child-maintenance/y.html deleted file mode 100644 index 57bc32b7997..00000000000 --- a/test/artefacts/calculate-your-child-maintenance/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Child maintenance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Will you be paying or receiving child maintenance payments? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-child-maintenance/y.txt b/test/artefacts/calculate-your-child-maintenance/y.txt new file mode 100644 index 00000000000..1e3053aea75 --- /dev/null +++ b/test/artefacts/calculate-your-child-maintenance/y.txt @@ -0,0 +1,14 @@ +Will you be paying or receiving child maintenance payments? + + + + + + * pay: paying + * receive: receiving + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html b/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html deleted file mode 100644 index 262762fb066..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours will be worked a year? -

-
- -

This is calculated by excluding statutory entitlement. This calculation isn't suitable for term-time workers.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.txt b/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.txt new file mode 100644 index 00000000000..ff9fd3d4387 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.txt @@ -0,0 +1,12 @@ +How many hours will be worked a year? + + + +This is calculated by excluding statutory entitlement. This calculation isn't suitable for term-time workers. + + +Hours per year + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.html b/test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.html deleted file mode 100644 index 354394d5539..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours have been worked in this leave year? -

-
- -

The holiday entitlement may be calculated as the leave builds up ('accrues') for each hour worked.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.txt b/test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.txt new file mode 100644 index 00000000000..c3005ac594e --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.txt @@ -0,0 +1,12 @@ +How many hours have been worked in this leave year? + + + +The holiday entitlement may be calculated as the leave builds up ('accrues') for each hour worked. + + +Hours worked + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/compressed-hours.html b/test/artefacts/calculate-your-holiday-entitlement/compressed-hours.html deleted file mode 100644 index 41959d7f4e4..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/compressed-hours.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours are worked per week? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/compressed-hours.txt b/test/artefacts/calculate-your-holiday-entitlement/compressed-hours.txt new file mode 100644 index 00000000000..af99ef76fd8 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/compressed-hours.txt @@ -0,0 +1,12 @@ +How many hours are worked per week? + + + + + + +Hours per week + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.html b/test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.html deleted file mode 100644 index d788f59287b..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Number of days per week worked? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.txt b/test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.txt new file mode 100644 index 00000000000..c0c835e08ea --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.txt @@ -0,0 +1,12 @@ +Number of days per week worked? + + + + + + +Days per week + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.html b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.html deleted file mode 100644 index c0055697a55..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you want to work out holiday: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.txt b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.txt new file mode 100644 index 00000000000..587b48fad0c --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.txt @@ -0,0 +1,16 @@ +Do you want to work out holiday: + + + + + + * full-year: for a full leave year + * starting: for someone starting part way through a leave year + * leaving: for someone leaving part way through a leave year + * starting-and-leaving: for someone starting and leaving part way through a leave year + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.html b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.html deleted file mode 100644 index b9e9b4ced90..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Number of days worked per week? -

-
- -

If you work half-days enter .5 for a half, eg 3.5 for three and a half days.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.txt b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.txt new file mode 100644 index 00000000000..4a11c1bbd52 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.txt @@ -0,0 +1,12 @@ +Number of days worked per week? + + + +If you work half-days enter .5 for a half, eg 3.5 for three and a half days. + + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.html b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.html deleted file mode 100644 index d6f35bc132b..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the employment end date? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.txt b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.txt new file mode 100644 index 00000000000..6f65581905b --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.txt @@ -0,0 +1,12 @@ +What was the employment end date? + + + + + + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.html b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.html deleted file mode 100644 index dca3a3185b5..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the employment start date? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.txt b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.txt new file mode 100644 index 00000000000..17590ec3b3c --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.txt @@ -0,0 +1,12 @@ +What was the employment start date? + + + + + + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.html b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.html deleted file mode 100644 index 584859c7d8f..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When does the leave year start? -

-
- -

This is usually in the employment contract. If it isn’t and the job was started after 1 October 1998, the leave year will start on the 1st day of the job. If the job was started on or before 1 October 1998, the leave year will start on 1 October.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.txt b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.txt new file mode 100644 index 00000000000..0ae35acd695 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.txt @@ -0,0 +1,12 @@ +When does the leave year start? + + + +This is usually in the employment contract. If it isn’t and the job was started after 1 October 1998, the leave year will start on the 1st day of the job. If the job was started on or before 1 October 1998, the leave year will start on 1 October. + + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.html b/test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.html deleted file mode 100644 index 3f91b153c0b..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Number of hours worked per week? -

-
- -

If you work half-hours enter .5 for a half, eg 40.5.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.txt b/test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.txt new file mode 100644 index 00000000000..5415d360d3d --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.txt @@ -0,0 +1,12 @@ +Number of hours worked per week? + + + +If you work half-hours enter .5 for a half, eg 40.5. + + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker.html b/test/artefacts/calculate-your-holiday-entitlement/shift-worker.html deleted file mode 100644 index 11357d29108..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/shift-worker.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you want to calculate the holiday: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker.txt b/test/artefacts/calculate-your-holiday-entitlement/shift-worker.txt new file mode 100644 index 00000000000..201cee86ea6 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/shift-worker.txt @@ -0,0 +1,16 @@ +Do you want to calculate the holiday: + + + + + + * full-year: for a full leave year + * starting: for someone starting part way through a leave year + * leaving: for someone leaving part way through a leave year + * starting-and-leaving: for someone starting and leaving part way through a leave year + + + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.html b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.html deleted file mode 100644 index e711279c838..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours in each shift? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.txt b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.txt new file mode 100644 index 00000000000..cd4eb95287c --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.txt @@ -0,0 +1,12 @@ +How many hours in each shift? + + + + + + +Hours per shift + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.html b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.html deleted file mode 100644 index 24242f835a1..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days in the shift pattern? -

-
- -

The shift pattern includes non-working days.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Is the holiday entitlement based on: - shifts
Do you want to calculate the holiday: - for a full leave year
How many hours in each shift? - 8.0
How many shifts will be worked per shift pattern? - 3
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.txt b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.txt new file mode 100644 index 00000000000..42ef3ff6033 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.txt @@ -0,0 +1,12 @@ +How many days in the shift pattern? + + + +The shift pattern includes non-working days. + + +Days per pattern + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.html b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.html deleted file mode 100644 index 4dfcc54bf03..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many shifts will be worked per shift pattern? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.txt b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.txt new file mode 100644 index 00000000000..5ef3918b881 --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.txt @@ -0,0 +1,12 @@ +How many shifts will be worked per shift pattern? + + + + + + +Shifts per pattern + + + + diff --git a/test/artefacts/calculate-your-holiday-entitlement/y.html b/test/artefacts/calculate-your-holiday-entitlement/y.html deleted file mode 100644 index af9f1f2ec84..00000000000 --- a/test/artefacts/calculate-your-holiday-entitlement/y.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Calculate holiday entitlement - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the holiday entitlement based on: -

-
- -

Check the employment contract if you’re not sure about the holiday entitlement.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-holiday-entitlement/y.txt b/test/artefacts/calculate-your-holiday-entitlement/y.txt new file mode 100644 index 00000000000..6eb071c054b --- /dev/null +++ b/test/artefacts/calculate-your-holiday-entitlement/y.txt @@ -0,0 +1,18 @@ +Is the holiday entitlement based on: + + + +Check the employment contract if you’re not sure about the holiday entitlement. + + * days-worked-per-week: days worked per week + * hours-worked-per-week: hours worked per week + * casual-or-irregular-hours: casual or irregular hours + * annualised-hours: annualised hours + * compressed-hours: compressed hours + * shift-worker: shifts + + + + + + diff --git a/test/artefacts/calculate-your-redundancy-pay/2012-01-01.html b/test/artefacts/calculate-your-redundancy-pay/2012-01-01.html deleted file mode 100644 index 6419b4e7887..00000000000 --- a/test/artefacts/calculate-your-redundancy-pay/2012-01-01.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Calculate your statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old were you on the date you were made redundant? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-redundancy-pay/2012-01-01.txt b/test/artefacts/calculate-your-redundancy-pay/2012-01-01.txt new file mode 100644 index 00000000000..b2e42726ecd --- /dev/null +++ b/test/artefacts/calculate-your-redundancy-pay/2012-01-01.txt @@ -0,0 +1,12 @@ +How old were you on the date you were made redundant? + + + + + + + + +years old + + diff --git a/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.html b/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.html deleted file mode 100644 index b001a74e2b8..00000000000 --- a/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Calculate your statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many years have you worked for your employer? -

-
- -

Only count full years of service. For example, 3 years and 9 months count as 3 years.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.txt b/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.txt new file mode 100644 index 00000000000..d401ed66083 --- /dev/null +++ b/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.txt @@ -0,0 +1,12 @@ +How many years have you worked for your employer? + + + +Only count full years of service. For example, 3 years and 9 months count as 3 years. + + + + +full years worked + + diff --git a/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.html b/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.html deleted file mode 100644 index e876527e4ea..00000000000 --- a/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Calculate your statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your weekly pay before tax and any other deductions? -

-
- -

Examples of other deductions include student loans and child maintenance.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.txt b/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.txt new file mode 100644 index 00000000000..b693fe6d3c2 --- /dev/null +++ b/test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.txt @@ -0,0 +1,12 @@ +What is your weekly pay before tax and any other deductions? + + + +Examples of other deductions include student loans and child maintenance. + + + + +per week + + diff --git a/test/artefacts/calculate-your-redundancy-pay/y.html b/test/artefacts/calculate-your-redundancy-pay/y.html deleted file mode 100644 index 4b48af82869..00000000000 --- a/test/artefacts/calculate-your-redundancy-pay/y.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Calculate your statutory redundancy pay - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What date were you made redundant? -

-
- -

Use the original redundancy date even if your notice is brought forward, you’re paid in lieu of notice or made redundant after trialing a new job.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/calculate-your-redundancy-pay/y.txt b/test/artefacts/calculate-your-redundancy-pay/y.txt new file mode 100644 index 00000000000..f07b0ecc9e0 --- /dev/null +++ b/test/artefacts/calculate-your-redundancy-pay/y.txt @@ -0,0 +1,12 @@ +What date were you made redundant? + + + +Use the original redundancy date even if your notice is brought forward, you’re paid in lieu of notice or made redundant after trialing a new job. + + + + + + + diff --git a/test/artefacts/check-uk-visa/afghanistan.html b/test/artefacts/check-uk-visa/afghanistan.html deleted file mode 100644 index 9708043fc1c..00000000000 --- a/test/artefacts/check-uk-visa/afghanistan.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - Check if you need a UK visa - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What are you coming to the UK to do? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/check-uk-visa/afghanistan.txt b/test/artefacts/check-uk-visa/afghanistan.txt new file mode 100644 index 00000000000..a0936a94f95 --- /dev/null +++ b/test/artefacts/check-uk-visa/afghanistan.txt @@ -0,0 +1,21 @@ +What are you coming to the UK to do? + + + + + + * tourism: Tourism, including visiting friends or family + * work: Work, academic visit or business + * study: Study + * transit: Transit (on your way to somewhere else) + * family: Join partner or family for a long stay + * marriage: Get married or enter into a civil partnership + * school: Visit your child at school + * medical: Get private medical treatment + * diplomatic: For official diplomatic or government business (including transit through the UK) + + + + + + diff --git a/test/artefacts/check-uk-visa/afghanistan/transit.html b/test/artefacts/check-uk-visa/afghanistan/transit.html deleted file mode 100644 index 610b8cb9d1d..00000000000 --- a/test/artefacts/check-uk-visa/afghanistan/transit.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Check if you need a UK visa - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Will you pass through UK Border Control? -

-
- -

You might pass through UK Border Control even if you don't leave the airport - eg your bags aren't checked through and you need to collect them before transferring to your outbound flight.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/check-uk-visa/afghanistan/transit.txt b/test/artefacts/check-uk-visa/afghanistan/transit.txt new file mode 100644 index 00000000000..b1ed360f567 --- /dev/null +++ b/test/artefacts/check-uk-visa/afghanistan/transit.txt @@ -0,0 +1,14 @@ +Will you pass through UK Border Control? + + + +You might pass through UK Border Control even if you don't leave the airport - eg your bags aren't checked through and you need to collect them before transferring to your outbound flight. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/check-uk-visa/afghanistan/work.html b/test/artefacts/check-uk-visa/afghanistan/work.html deleted file mode 100644 index ff764d9023e..00000000000 --- a/test/artefacts/check-uk-visa/afghanistan/work.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Check if you need a UK visa - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How long are you planning to work in the UK for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/check-uk-visa/afghanistan/work.txt b/test/artefacts/check-uk-visa/afghanistan/work.txt new file mode 100644 index 00000000000..dbe798507ce --- /dev/null +++ b/test/artefacts/check-uk-visa/afghanistan/work.txt @@ -0,0 +1,14 @@ +How long are you planning to work in the UK for? + + + + + + * six_months_or_less: 6 months or less + * longer_than_six_months: longer than 6 months + + + + + + diff --git a/test/artefacts/check-uk-visa/israel.html b/test/artefacts/check-uk-visa/israel.html deleted file mode 100644 index 8e5064a4e0c..00000000000 --- a/test/artefacts/check-uk-visa/israel.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Check if you need a UK visa - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What sort of passport do you have? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/check-uk-visa/israel.txt b/test/artefacts/check-uk-visa/israel.txt new file mode 100644 index 00000000000..a2e3c2604c8 --- /dev/null +++ b/test/artefacts/check-uk-visa/israel.txt @@ -0,0 +1,14 @@ +What sort of passport do you have? + + + + + + * full-passport: Full passport + * provisional-passport: Provisional passport ('travel document in lieu of a national passport') + + + + + + diff --git a/test/artefacts/check-uk-visa/y.html b/test/artefacts/check-uk-visa/y.html deleted file mode 100644 index 212e1b2cb4f..00000000000 --- a/test/artefacts/check-uk-visa/y.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - Check if you need a UK visa - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What’s your nationality as shown on your passport or travel document? -

-
- -

If you’re a refugee or don’t have a passport or travel document, select ‘Stateless or refugee’.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/check-uk-visa/y.txt b/test/artefacts/check-uk-visa/y.txt new file mode 100644 index 00000000000..f10193887f7 --- /dev/null +++ b/test/artefacts/check-uk-visa/y.txt @@ -0,0 +1,233 @@ +What’s your nationality as shown on your passport or travel document? + + + +If you’re a refugee or don’t have a passport or travel document, select ‘Stateless or refugee’. + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-virgin-islands: British Virgin Islands + * british-dependent-territories-citizen: British dependent territories citizen + * british-national-overseas: British national overseas + * british-overseas-citizen: British overseas citizen + * british-protected-person: British protected person + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * cyprus-north: Cyprus (northern part of Cyprus) + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * greece: Greece + * grenada: Grenada + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hong-kong-(british-national-overseas): Hong Kong (British national overseas) + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * mauritania: Mauritania + * mauritius: Mauritius + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * palestinian-territories: Palestinian Territories + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * stateless-or-refugee: Stateless or Refugee + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * vatican-city: Vatican City + * venezuela: Venezuela + * vietnam: Vietnam + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no.html b/test/artefacts/childcare-costs-for-tax-credits/no.html deleted file mode 100644 index b6d1ce9c0c2..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you use childcare? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no.txt b/test/artefacts/childcare-costs-for-tax-credits/no.txt new file mode 100644 index 00000000000..7a62624f8dc --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no.txt @@ -0,0 +1,15 @@ +How often do you use childcare? + + + + + + * regularly_less_than_year: I’ve been using childcare regularly for less than a year + * regularly_more_than_year: I've been using childcare regularly for a year or more + * only_short_while: I only use childcare for short periods once in a while + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year.html deleted file mode 100644 index cb4b9143fe8..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay your childcare provider(s)? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year.txt new file mode 100644 index 00000000000..9a1bbacc5d2 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year.txt @@ -0,0 +1,17 @@ +How often do you pay your childcare provider(s)? + + + + + + * weekly_same_amount: Weekly, and I always pay the same amount + * weekly_diff_amount: Weekly, and the amount I pay varies + * monthly_same_amount: Monthly, and I always pay the same amount + * monthly_diff_amount: Monthly, and the amount I pay varies + * other: Other + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_diff_amount.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_diff_amount.html deleted file mode 100644 index 477a7f7fd1f..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_diff_amount.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to pay in total for childcare for the next 12 months? -

-
- -

Add up the amounts you expect to pay in total for the next 12 months - start from the day you’re doing the calculation

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - No
How often do you use childcare? - I’ve been using childcare regularly for less than a year
How often do you pay your childcare provider(s)? - Monthly, and the amount I pay varies
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_diff_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_diff_amount.txt new file mode 100644 index 00000000000..d94db616ddc --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_diff_amount.txt @@ -0,0 +1,12 @@ +How much do you expect to pay in total for childcare for the next 12 months? + + + +Add up the amounts you expect to pay in total for the next 12 months - start from the day you’re doing the calculation + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_same_amount.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_same_amount.html deleted file mode 100644 index 5d72aaced6e..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_same_amount.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you pay each month? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - No
How often do you use childcare? - I’ve been using childcare regularly for less than a year
How often do you pay your childcare provider(s)? - Monthly, and I always pay the same amount
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_same_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_same_amount.txt new file mode 100644 index 00000000000..8293177ea7c --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/monthly_same_amount.txt @@ -0,0 +1,12 @@ +How much do you pay each month? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/weekly_diff_amount.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/weekly_diff_amount.html deleted file mode 100644 index 927b058efe6..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/weekly_diff_amount.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to pay in total for childcare for the next 52 weeks? -

-
- -

Add up the amounts you expect to pay in total for the next 52 weeks - start from the day you’re doing the calculation

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - No
How often do you use childcare? - I’ve been using childcare regularly for less than a year
How often do you pay your childcare provider(s)? - Weekly, and the amount I pay varies
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/weekly_diff_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/weekly_diff_amount.txt new file mode 100644 index 00000000000..5d26317fa32 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_less_than_year/weekly_diff_amount.txt @@ -0,0 +1,12 @@ +How much do you expect to pay in total for childcare for the next 52 weeks? + + + +Add up the amounts you expect to pay in total for the next 52 weeks - start from the day you’re doing the calculation + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year.html deleted file mode 100644 index 6abafefec98..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you pay the same each time? -

-
-
-

Sometimes you may pay - or expect to pay - different amounts for childcare (known as ‘variable costs’), for example:

- -
    -
  • you regularly use childcare, but pay more during school holidays than you do at term time
  • -
  • the hours you use childcare change from week to week or month to month
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year.txt new file mode 100644 index 00000000000..8bb97035b9e --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year.txt @@ -0,0 +1,18 @@ +Do you pay the same each time? + +Sometimes you may pay - or expect to pay - different amounts for childcare (known as ‘variable costs’), for example: + +- you regularly use childcare, but pay more during school holidays than you do at term time +- the hours you use childcare change from week to week or month to month + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/no.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/no.html deleted file mode 100644 index 006f39cc159..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/no.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much have you spent on childcare in the last 12 months? -

-
- -

Add up how much you have spent in total over the last 12 months - start backwards from the date you’re doing the calculation.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/no.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/no.txt new file mode 100644 index 00000000000..772af638b5f --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/no.txt @@ -0,0 +1,12 @@ +How much have you spent on childcare in the last 12 months? + + + +Add up how much you have spent in total over the last 12 months - start backwards from the date you’re doing the calculation. + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes.html deleted file mode 100644 index 671ae2fb2e1..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay your childcare provider(s)? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes.txt new file mode 100644 index 00000000000..c7c919ef299 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes.txt @@ -0,0 +1,19 @@ +How often do you pay your childcare provider(s)? + + + + + + * weekly: Weekly + * fortnightly: Fortnightly + * every_4_weeks: Every 4 weeks + * every_month: Every calendar month + * termly: Termly + * yearly: Yearly + * other: Other + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/every_4_weeks.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/every_4_weeks.html deleted file mode 100644 index 5b17dd31b7f..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/every_4_weeks.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you pay every 4 weeks? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - No
How often do you use childcare? - I've been using childcare regularly for a year or more
Do you pay the same each time? - Yes
How often do you pay your childcare provider(s)? - Every 4 weeks
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/every_4_weeks.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/every_4_weeks.txt new file mode 100644 index 00000000000..42e1ea95292 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/every_4_weeks.txt @@ -0,0 +1,12 @@ +How much do you pay every 4 weeks? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/fortnightly.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/fortnightly.html deleted file mode 100644 index 97204dd2a0a..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/fortnightly.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you pay each fortnight? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - No
How often do you use childcare? - I've been using childcare regularly for a year or more
Do you pay the same each time? - Yes
How often do you pay your childcare provider(s)? - Fortnightly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/fortnightly.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/fortnightly.txt new file mode 100644 index 00000000000..8cb1924da63 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/fortnightly.txt @@ -0,0 +1,12 @@ +How much do you pay each fortnight? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/yearly.html b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/yearly.html deleted file mode 100644 index 278837137ce..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/yearly.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you pay every year? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - No
How often do you use childcare? - I've been using childcare regularly for a year or more
Do you pay the same each time? - Yes
How often do you pay your childcare provider(s)? - Yearly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/yearly.txt b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/yearly.txt new file mode 100644 index 00000000000..cc38e0df4b3 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/no/regularly_more_than_year/yes/yearly.txt @@ -0,0 +1,12 @@ +How much do you pay every year? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/y.html b/test/artefacts/childcare-costs-for-tax-credits/y.html deleted file mode 100644 index 689871267d2..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you currently claiming tax credits for childcare costs? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/y.txt b/test/artefacts/childcare-costs-for-tax-credits/y.txt new file mode 100644 index 00000000000..9da5ca8f369 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/y.txt @@ -0,0 +1,14 @@ +Are you currently claiming tax credits for childcare costs? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes.html b/test/artefacts/childcare-costs-for-tax-credits/yes.html deleted file mode 100644 index 19d49327f27..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Have the costs of your childcare changed since you last made your claim? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes.txt b/test/artefacts/childcare-costs-for-tax-credits/yes.txt new file mode 100644 index 00000000000..cdb9ab98abb --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes.txt @@ -0,0 +1,14 @@ +Have the costs of your childcare changed since you last made your claim? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes.html deleted file mode 100644 index 8c3f94ec33d..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay your childcare provider(s)? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes.txt new file mode 100644 index 00000000000..9a1bbacc5d2 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes.txt @@ -0,0 +1,17 @@ +How often do you pay your childcare provider(s)? + + + + + + * weekly_same_amount: Weekly, and I always pay the same amount + * weekly_diff_amount: Weekly, and the amount I pay varies + * monthly_same_amount: Monthly, and I always pay the same amount + * monthly_diff_amount: Monthly, and the amount I pay varies + * other: Other + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_diff_amount.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_diff_amount.html deleted file mode 100644 index 3291932f3e4..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_diff_amount.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to pay in total for childcare for the next 12 months? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Monthly, and the amount I pay varies
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_diff_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_diff_amount.txt new file mode 100644 index 00000000000..5271f7112fe --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_diff_amount.txt @@ -0,0 +1,12 @@ +How much do you expect to pay in total for childcare for the next 12 months? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount.html deleted file mode 100644 index 85408d3dbc8..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's the new monthly cost of your childcare? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Monthly, and I always pay the same amount
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount.txt new file mode 100644 index 00000000000..94978926688 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount.txt @@ -0,0 +1,12 @@ +What's the new monthly cost of your childcare? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount/43.3.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount/43.3.html deleted file mode 100644 index a78a9b43917..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount/43.3.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the old average weekly amount you gave the Tax Credit Office? -

-
-
-

If you don’t know what your previous childcare costs were, check your award or renewal notice.

- -

Round the total up to the nearest pound.

- - -
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Monthly, and I always pay the same amount
What's the new monthly cost of your childcare? - £43.30
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount/43.3.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount/43.3.txt new file mode 100644 index 00000000000..4a42edd81a6 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/monthly_same_amount/43.3.txt @@ -0,0 +1,15 @@ +What was the old average weekly amount you gave the Tax Credit Office? + +If you don’t know what your previous childcare costs were, check your award or renewal notice. + +Round the total up to the nearest pound. + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount.html deleted file mode 100644 index 3261afc7291..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to pay in total for childcare for the next 52 weeks? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Weekly, and the amount I pay varies
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount.txt new file mode 100644 index 00000000000..169ad22b96e --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount.txt @@ -0,0 +1,12 @@ +How much do you expect to pay in total for childcare for the next 52 weeks? + + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount/520.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount/520.html deleted file mode 100644 index 95e3022a238..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount/520.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the old average weekly amount you gave the Tax Credit Office? -

-
-
-

If you don’t know what your previous childcare costs were, check your award or renewal notice.

- -

Round the total up to the nearest pound.

- - -
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Weekly, and the amount I pay varies
How much do you expect to pay in total for childcare for the next 52 weeks? - £520
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount/520.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount/520.txt new file mode 100644 index 00000000000..4a42edd81a6 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_diff_amount/520.txt @@ -0,0 +1,15 @@ +What was the old average weekly amount you gave the Tax Credit Office? + +If you don’t know what your previous childcare costs were, check your award or renewal notice. + +Round the total up to the nearest pound. + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount.html deleted file mode 100644 index 82fbcb0bd60..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What are your new weekly costs? -

-
-
-

Round the total up to the nearest pound.

- -
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Weekly, and I always pay the same amount
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount.txt new file mode 100644 index 00000000000..ec3cdb295e3 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount.txt @@ -0,0 +1,13 @@ +What are your new weekly costs? + +Round the total up to the nearest pound. + + + + + + + + + + diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount/10.html b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount/10.html deleted file mode 100644 index 6afdb83cef6..00000000000 --- a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount/10.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - Tax credits: working out your childcare costs - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the old average weekly amount you gave the Tax Credit Office? -

-
-
-

If you don’t know what your previous childcare costs were, check your award or renewal notice.

- -

Round the total up to the nearest pound.

- - -
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently claiming tax credits for childcare costs? - Yes
Have the costs of your childcare changed since you last made your claim? - Yes
How often do you pay your childcare provider(s)? - Weekly, and I always pay the same amount
What are your new weekly costs? - £10
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount/10.txt b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount/10.txt new file mode 100644 index 00000000000..4a42edd81a6 --- /dev/null +++ b/test/artefacts/childcare-costs-for-tax-credits/yes/yes/weekly_same_amount/10.txt @@ -0,0 +1,15 @@ +What was the old average weekly amount you gave the Tax Credit Office? + +If you don’t know what your previous childcare costs were, check your award or renewal notice. + +Round the total up to the nearest pound. + + + + + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency.html deleted file mode 100644 index 77741d03f76..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What are your circumstances? -

-
-
-

Social housing tenants should talk to their social housing provider if they want to improve their energy efficiency.

- - -
- -

Choose all that apply to you. If none apply just click ‘Next step’.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency.txt new file mode 100644 index 00000000000..f7cd0a007ba --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency.txt @@ -0,0 +1,16 @@ +What are your circumstances? + +Social housing tenants should talk to their social housing provider if they want to improve their energy efficiency. + + +Choose all that apply to you. If none apply just click ‘Next step’. + + * benefits: You’re getting benefits + * property: You own your property + * permission: You rent privately but have permission from the owner to install or upgrade the boiler + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none.html deleted file mode 100644 index 1f5677052d8..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When was your property built? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none.txt new file mode 100644 index 00000000000..c6c073837ef --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none.txt @@ -0,0 +1,15 @@ +When was your property built? + + + + + + * on-or-after-1995: 1995 or newer + * 1940s-1984: 1940s – 1994 + * before-1940: Before 1940 + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.html deleted file mode 100644 index 6c6939fc985..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which of these do you have: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you looking for: - Help to make your home more energy efficient
What are your circumstances?
    -
  • none
  • -
When was your property built? - 1940s – 1994
What kind of property do you live in? - A house, terraced house or bungalow
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.txt new file mode 100644 index 00000000000..22732b6d5f9 --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.txt @@ -0,0 +1,21 @@ +Which of these do you have: + + + + + + * mains_gas: Mains gas + * electric_heating: Electric heating + * modern_double_glazing: Double glazing (or secondary glazing for listed properties) + * loft_attic_conversion: Loft or attic conversion + * loft_insulation: Loft insulation + * solid_wall_insulation: Solid wall insulation + * cavity_wall_insulation: Cavity wall insulation + * modern_boiler: Modern boiler (less than 10 years) + * draught_proofing: Draught proofing + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.html deleted file mode 100644 index 73ad0173abc..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which of these do you have: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you looking for: - Help to make your home more energy efficient
What are your circumstances?
    -
  • none
  • -
When was your property built? - Before 1940
What kind of property do you live in? - A house, terraced house or bungalow
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.txt new file mode 100644 index 00000000000..d54dd46d00f --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.txt @@ -0,0 +1,20 @@ +Which of these do you have: + + + + + + * mains_gas: Mains gas + * electric_heating: Electric heating + * modern_double_glazing: Double glazing (or secondary glazing for listed properties) + * loft_attic_conversion: Loft or attic conversion + * loft_insulation: Loft insulation + * solid_wall_insulation: Solid wall insulation + * modern_boiler: Modern boiler (less than 10 years) + * draught_proofing: Draught proofing + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.html deleted file mode 100644 index 50f98a5e21e..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What kind of property do you live in? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.txt new file mode 100644 index 00000000000..b56f33587be --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.txt @@ -0,0 +1,14 @@ +What kind of property do you live in? + + + + + + * house: A house, terraced house or bungalow + * flat: A flat + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.html deleted file mode 100644 index df1d3e3e99d..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is it a top-floor or a ground-floor flat? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you looking for: - Help to make your home more energy efficient
What are your circumstances?
    -
  • none
  • -
When was your property built? - 1995 or newer
What kind of property do you live in? - A flat
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.txt new file mode 100644 index 00000000000..17b525a8e39 --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.txt @@ -0,0 +1,14 @@ +Is it a top-floor or a ground-floor flat? + + + + + + * top_floor: Top-floor + * ground_floor: Ground-floor + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.html b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.html deleted file mode 100644 index 6bb9e1da9f9..00000000000 --- a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which of these do you have: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you looking for: - Help to make your home more energy efficient
What are your circumstances?
    -
  • none
  • -
When was your property built? - 1995 or newer
What kind of property do you live in? - A house, terraced house or bungalow
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.txt b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.txt new file mode 100644 index 00000000000..4213905df01 --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.txt @@ -0,0 +1,16 @@ +Which of these do you have: + + + + + + * mains_gas: Mains gas + * electric_heating: Electric heating + * loft_attic_conversion: Loft or attic conversion + * draught_proofing: Draught proofing + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill.html b/test/artefacts/energy-grants-calculator/help_with_fuel_bill.html deleted file mode 100644 index 82ddfc4d9f7..00000000000 --- a/test/artefacts/energy-grants-calculator/help_with_fuel_bill.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What are your circumstances? -

-
- -

Choose all that apply to you. If none apply just click ‘Next step’.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill.txt b/test/artefacts/energy-grants-calculator/help_with_fuel_bill.txt new file mode 100644 index 00000000000..f1a9d23a301 --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_with_fuel_bill.txt @@ -0,0 +1,16 @@ +What are your circumstances? + + + +Choose all that apply to you. If none apply just click ‘Next step’. + + * benefits: You’re getting benefits + * property: You own your property + * permission: You rent privately but have permission from the owner to make energy saving improvements (eg upgrade the boiler) + * social_housing: You’re a social housing tenant + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.html b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.html deleted file mode 100644 index 4dfb1360204..00000000000 --- a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which of these benefits do you get? -

-
- -

Choose all that apply to you. If none apply just click ‘Next step’.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.txt b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.txt new file mode 100644 index 00000000000..9d6bc4aabce --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.txt @@ -0,0 +1,19 @@ +Which of these benefits do you get? + + + +Choose all that apply to you. If none apply just click ‘Next step’. + + * pension_credit: Pension Credit + * income_support: Income Support + * jsa: Income based Jobseeker’s Allowance + * esa: Income-related Employment and Support Allowance (ESA) + * child_tax_credit: Child Tax Credit - only if your income is £16,010 or less + * working_tax_credit: Working Tax Credit - only if your income is £16,010 or less + * universal_credit: Universal Credit (and you earned £1,250 or less after tax in any assessment period in the last 12 months) + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01/pension_credit,income_support,jsa,esa,child_tax_credit,working_tax_credit.html b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01/pension_credit,income_support,jsa,esa,child_tax_credit,working_tax_credit.html deleted file mode 100644 index 70d1346f9b4..00000000000 --- a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01/pension_credit,income_support,jsa,esa,child_tax_credit,working_tax_credit.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you elderly, disabled, or do you have children? -

-
- -

Choose all that apply to you. If none apply just click ‘Next step’.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you looking for: - Help with your fuel bill
What are your circumstances?
    -
  • You’re getting benefits
  • -
  • You own your property
  • -
What’s your date of birth? - 1 January 1950
Which of these benefits do you get?
    -
  • Child Tax Credit - only if your income is £16,010 or less
  • -
  • Income-related Employment and Support Allowance (ESA)
  • -
  • Income Support
  • -
  • Income based Jobseeker’s Allowance
  • -
  • Pension Credit
  • -
  • Working Tax Credit - only if your income is £16,010 or less
  • -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01/pension_credit,income_support,jsa,esa,child_tax_credit,working_tax_credit.txt b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01/pension_credit,income_support,jsa,esa,child_tax_credit,working_tax_credit.txt new file mode 100644 index 00000000000..1e220676d6e --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01/pension_credit,income_support,jsa,esa,child_tax_credit,working_tax_credit.txt @@ -0,0 +1,18 @@ +Are you elderly, disabled, or do you have children? + + + +Choose all that apply to you. If none apply just click ‘Next step’. + + * disabled: You or your partner are disabled. + * disabled_child: You have a disabled child. + * child_under_5: You have a child under 5. + * child_under_16: You have a child under 16 or under 20 if in full-time education. + * pensioner_premium: You (or your partner) get a ‘pensioner premium’. + * work_support_esa: You’re in the work-related or support group of ESA. + + + + + + diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.html b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.html deleted file mode 100644 index 3dfbbbce408..00000000000 --- a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What’s your date of birth? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.txt b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.txt new file mode 100644 index 00000000000..094e4d7d422 --- /dev/null +++ b/test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.txt @@ -0,0 +1,12 @@ +What’s your date of birth? + + + + + + + + + + + diff --git a/test/artefacts/energy-grants-calculator/y.html b/test/artefacts/energy-grants-calculator/y.html deleted file mode 100644 index 69745771477..00000000000 --- a/test/artefacts/energy-grants-calculator/y.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Find energy grants and ways to improve your energy efficiency - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you looking for: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/energy-grants-calculator/y.txt b/test/artefacts/energy-grants-calculator/y.txt new file mode 100644 index 00000000000..9067c9da56e --- /dev/null +++ b/test/artefacts/energy-grants-calculator/y.txt @@ -0,0 +1,16 @@ +Are you looking for: + + + + + + * help_with_fuel_bill: Help with your fuel bill + * help_energy_efficiency: Help to make your home more energy efficient + * help_boiler_measure: Help with a new boiler, insulation or other improvements + * all_help: All of the above + + + + + + diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12.html b/test/artefacts/estimate-self-assessment-penalties/2011-12.html deleted file mode 100644 index d197883dd95..00000000000 --- a/test/artefacts/estimate-self-assessment-penalties/2011-12.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Estimate your penalty for late Self Assessment tax returns and payments - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How did you send your Self Assessment tax return? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12.txt b/test/artefacts/estimate-self-assessment-penalties/2011-12.txt new file mode 100644 index 00000000000..6a6c19303dd --- /dev/null +++ b/test/artefacts/estimate-self-assessment-penalties/2011-12.txt @@ -0,0 +1,14 @@ +How did you send your Self Assessment tax return? + + + + + + * online: Online + * paper: On paper + + + + + + diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12/online.html b/test/artefacts/estimate-self-assessment-penalties/2011-12/online.html deleted file mode 100644 index 89e8e6be043..00000000000 --- a/test/artefacts/estimate-self-assessment-penalties/2011-12/online.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - Estimate your penalty for late Self Assessment tax returns and payments - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When did you send your Self Assessment tax return? -

-
- -

If you sent it online, enter the date you submitted the return. If you sent it on paper, add 2 days to the date you posted it. If you haven’t sent it yet, enter the date you expect to send it.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12/online.txt b/test/artefacts/estimate-self-assessment-penalties/2011-12/online.txt new file mode 100644 index 00000000000..f23279b3a34 --- /dev/null +++ b/test/artefacts/estimate-self-assessment-penalties/2011-12/online.txt @@ -0,0 +1,12 @@ +When did you send your Self Assessment tax return? + + + +If you sent it online, enter the date you submitted the return. If you sent it on paper, add 2 days to the date you posted it. If you haven’t sent it yet, enter the date you expect to send it. + + + + + + + diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.html b/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.html deleted file mode 100644 index ea02f2ce91f..00000000000 --- a/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - Estimate your penalty for late Self Assessment tax returns and payments - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When did you pay the bill? -

-
- -

If you haven’t paid yet, enter the date you expect HM Revenue & Customs to get your payment

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
For which tax year do you want the estimate? - 6 April 2011 to 5 April 2012
How did you send your Self Assessment tax return? - Online
When did you send your Self Assessment tax return? - 7 April 2012
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.txt b/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.txt new file mode 100644 index 00000000000..faebc25f16a --- /dev/null +++ b/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.txt @@ -0,0 +1,12 @@ +When did you pay the bill? + + + +If you haven’t paid yet, enter the date you expect HM Revenue & Customs to get your payment + + + + + + + diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.html b/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.html deleted file mode 100644 index a7320568524..00000000000 --- a/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Estimate your penalty for late Self Assessment tax returns and payments - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Please enter how much your tax bill is (or an estimate if you don’t know) -

-
- -

This calculator is anonymous. None of your details will be passed to HMRC.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
For which tax year do you want the estimate? - 6 April 2011 to 5 April 2012
How did you send your Self Assessment tax return? - Online
When did you send your Self Assessment tax return? - 7 April 2012
When did you pay the bill? - 2 March 2013
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.txt b/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.txt new file mode 100644 index 00000000000..92c2dd57fd5 --- /dev/null +++ b/test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.txt @@ -0,0 +1,12 @@ +Please enter how much your tax bill is (or an estimate if you don’t know) + + + +This calculator is anonymous. None of your details will be passed to HMRC. + + + + +for the tax year + + diff --git a/test/artefacts/estimate-self-assessment-penalties/y.html b/test/artefacts/estimate-self-assessment-penalties/y.html deleted file mode 100644 index 4b7b2f91556..00000000000 --- a/test/artefacts/estimate-self-assessment-penalties/y.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Estimate your penalty for late Self Assessment tax returns and payments - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- For which tax year do you want the estimate? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/estimate-self-assessment-penalties/y.txt b/test/artefacts/estimate-self-assessment-penalties/y.txt new file mode 100644 index 00000000000..e600ca9aecf --- /dev/null +++ b/test/artefacts/estimate-self-assessment-penalties/y.txt @@ -0,0 +1,16 @@ +For which tax year do you want the estimate? + + + + + + * 2011-12: 6 April 2011 to 5 April 2012 + * 2012-13: 6 April 2012 to 5 April 2013 + * 2013-14: 6 April 2013 to 5 April 2014 + * 2014-15: 6 April 2014 to 5 April 2015 + + + + + + diff --git a/test/artefacts/help-if-you-are-arrested-abroad/y.html b/test/artefacts/help-if-you-are-arrested-abroad/y.html deleted file mode 100644 index 0b50520e956..00000000000 --- a/test/artefacts/help-if-you-are-arrested-abroad/y.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - Help if you're arrested abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/help-if-you-are-arrested-abroad/y.txt b/test/artefacts/help-if-you-are-arrested-abroad/y.txt new file mode 100644 index 00000000000..f2b69ba900c --- /dev/null +++ b/test/artefacts/help-if-you-are-arrested-abroad/y.txt @@ -0,0 +1,238 @@ +Which country? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales.html deleted file mode 100644 index 5bceb6c491d..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is there a living husband, wife or civil partner? -

-
- -

A surviving partner who wasn't married or in a civil partnership with the deceased has no automatic right to inherit.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales.txt new file mode 100644 index 00000000000..b5f09309c70 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales.txt @@ -0,0 +1,14 @@ +Is there a living husband, wife or civil partner? + + + +A surviving partner who wasn't married or in a civil partnership with the deceased has no automatic right to inherit. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.html deleted file mode 100644 index b2173cce35d..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are there any living parents? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - England and Wales
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.txt new file mode 100644 index 00000000000..faae92681ff --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.txt @@ -0,0 +1,14 @@ +Are there any living parents? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.html deleted file mode 100644 index ef296ce699d..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the deceased have any brothers or sisters? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - England and Wales
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.txt new file mode 100644 index 00000000000..0abac0cdef2 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.txt @@ -0,0 +1,14 @@ +Did the deceased have any brothers or sisters? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.html deleted file mode 100644 index 523c683cd1b..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the deceased have any half-brothers or half-sisters? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - England and Wales
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
Did the deceased have any brothers or sisters? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.txt new file mode 100644 index 00000000000..6af4f22557c --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.txt @@ -0,0 +1,14 @@ +Did the deceased have any half-brothers or half-sisters? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.html deleted file mode 100644 index 2827edc5dc2..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are there any living grandparents? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - England and Wales
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
Did the deceased have any brothers or sisters? - No
Did the deceased have any half-brothers or half-sisters? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.txt new file mode 100644 index 00000000000..e742d2e2f2b --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.txt @@ -0,0 +1,14 @@ +Are there any living grandparents? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.html deleted file mode 100644 index ce773b1c818..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the deceased have any aunts or uncles? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - England and Wales
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
Did the deceased have any brothers or sisters? - No
Did the deceased have any half-brothers or half-sisters? - No
Are there any living grandparents? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.txt new file mode 100644 index 00000000000..f68cef2ab80 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.txt @@ -0,0 +1,14 @@ +Did the deceased have any aunts or uncles? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.html deleted file mode 100644 index 190f7a7dca6..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the deceased have any half-aunts or half-uncles? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - England and Wales
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
Did the deceased have any brothers or sisters? - No
Did the deceased have any half-brothers or half-sisters? - No
Are there any living grandparents? - No
Did the deceased have any aunts or uncles? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.txt new file mode 100644 index 00000000000..c7b52072c25 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.txt @@ -0,0 +1,14 @@ +Did the deceased have any half-aunts or half-uncles? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.html deleted file mode 100644 index 71cd0ea1c17..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the estate likely to be worth more than £250,000? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.txt new file mode 100644 index 00000000000..c395f2c82e1 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.txt @@ -0,0 +1,14 @@ +Is the estate likely to be worth more than £250,000? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.html b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.html deleted file mode 100644 index eea3369ea7e..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? -

-
- -

Children include legally-adopted sons or daughters (but not stepchildren) and any children where the deceased had a parental role.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.txt b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.txt new file mode 100644 index 00000000000..d75a90257ff --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.txt @@ -0,0 +1,14 @@ +Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? + + + +Children include legally-adopted sons or daughters (but not stepchildren) and any children where the deceased had a parental role. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.html b/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.html deleted file mode 100644 index 13639905d5f..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the deceased have any brothers or sisters? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - Northern Ireland
Is there a living husband, wife or civil partner? - Yes
Is the estate likely to be worth more than £250,000? - Yes
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.txt new file mode 100644 index 00000000000..0abac0cdef2 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.txt @@ -0,0 +1,14 @@ +Did the deceased have any brothers or sisters? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.html b/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.html deleted file mode 100644 index ae46710e7bb..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did they have more than one child? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - Northern Ireland
Is there a living husband, wife or civil partner? - Yes
Is the estate likely to be worth more than £250,000? - Yes
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.txt b/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.txt new file mode 100644 index 00000000000..2a430325242 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.txt @@ -0,0 +1,14 @@ +Did they have more than one child? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.html b/test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.html deleted file mode 100644 index 2a9822738cc..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are there any living great aunts or great uncles? -

-
- -

Great aunts and great uncles are brothers or sisters of the grandparents of the deceased.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Where did the deceased live? - Scotland
Is there a living husband, wife or civil partner? - No
Are there any living children, grandchildren or other direct descendants (eg great-grandchildren)? - No
Are there any living parents? - No
Did the deceased have any brothers or sisters? - No
Did the deceased have any aunts or uncles? - No
Are there any living grandparents? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.txt b/test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.txt new file mode 100644 index 00000000000..e5daa435875 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.txt @@ -0,0 +1,14 @@ +Are there any living great aunts or great uncles? + + + +Great aunts and great uncles are brothers or sisters of the grandparents of the deceased. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/inherits-someone-dies-without-will/y.html b/test/artefacts/inherits-someone-dies-without-will/y.html deleted file mode 100644 index e628f493f41..00000000000 --- a/test/artefacts/inherits-someone-dies-without-will/y.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - Intestacy - who inherits if someone dies without a will? - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where did the deceased live? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/inherits-someone-dies-without-will/y.txt b/test/artefacts/inherits-someone-dies-without-will/y.txt new file mode 100644 index 00000000000..cbbf9a96e33 --- /dev/null +++ b/test/artefacts/inherits-someone-dies-without-will/y.txt @@ -0,0 +1,15 @@ +Where did the deceased live? + + + + + + * england-and-wales: England and Wales + * scotland: Scotland + * northern-ireland: Northern Ireland + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW.html b/test/artefacts/landlord-immigration-check/B1 1PW.html deleted file mode 100644 index d1287542724..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the person renting the property as their main home? -

-
-
-

This includes:

- -
    -
  • tenancy agreement
  • -
  • a lease
  • -
  • a licence
  • -
  • sub-lease or sub-tenancy
  • -
  • lodgers
  • -
  • house guests or family members who pay rent
  • -
- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW.txt b/test/artefacts/landlord-immigration-check/B1 1PW.txt new file mode 100644 index 00000000000..d51a8f56d93 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW.txt @@ -0,0 +1,22 @@ +Is the person renting the property as their main home? + +This includes: + +- tenancy agreement +- a lease +- a licence +- sub-lease or sub-tenancy +- lodgers +- house guests or family members who pay rent + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/no.html deleted file mode 100644 index cb586d08c41..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/no.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What kind of property are you letting? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/no.txt new file mode 100644 index 00000000000..58b43412093 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/no.txt @@ -0,0 +1,20 @@ +What kind of property are you letting? + + + + + + * holiday_accommodation: holiday accommodation + * social_housing: social housing + * care_home: a care home or hospice + * hostel_or_refuge: a hostel or refuge + * mobile_home: a mobile home + * employee_accommodation: accommodation to an employee or as part of training, eg tied accommodation + * student_accommodation: student accommodation + * 7_year_lease_property: a residential property with a lease for 7 years or more + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes.html deleted file mode 100644 index d005e67c09d..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the person at least 18 years of age? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes.txt new file mode 100644 index 00000000000..b4193e726c0 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes.txt @@ -0,0 +1,14 @@ +Is the person at least 18 years of age? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.html deleted file mode 100644 index ccdbcc6e4b5..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? -

-
-
-

A named person is someone who appears on someone else’s passport.

- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.txt new file mode 100644 index 00000000000..28acd2c1e13 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.txt @@ -0,0 +1,15 @@ +Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? + +A named person is someone who appears on someone else’s passport. + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.html deleted file mode 100644 index e64a74b1a2e..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have a certificate of right of abode in their passport? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.txt new file mode 100644 index 00000000000..00015b31537 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.txt @@ -0,0 +1,14 @@ +Does the person have a certificate of right of abode in their passport? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.html deleted file mode 100644 index b62a2029073..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have a Certificate of Registration or Naturalisation as a British citizen? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.txt new file mode 100644 index 00000000000..f56b826b355 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.txt @@ -0,0 +1,14 @@ +Does the person have a Certificate of Registration or Naturalisation as a British citizen? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.html deleted file mode 100644 index 52f026e4025..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the person: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.txt new file mode 100644 index 00000000000..9d90855a9e0 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.txt @@ -0,0 +1,15 @@ +Is the person: + + + + + + * eu_eea_switzerland: from the EU, EEA or Switzerland + * non_eea_but_with_eu_eea_switzerland_family_member: a non-EEA family member of someone from the EU, EEA or Switzerland + * somewhere_else: from somewhere else + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.html deleted file mode 100644 index fd023f499ef..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have any of the following: -

-
-
-
    -
  • a Registration Certificate or Document Certifying Permanent Residence issued by the Home Office to a national of the EU, EEA or Switzerland
  • -
  • a valid Biometric Residence Permit issued by the Home Office endorsed to show they’re allowed to stay indefinitely in the UK
  • -
  • a Permanent Residence Card, indefinite leave to remain, indefinite leave to enter or no time limit card issued by the Home Office
  • -
  • a valid passport showing that the person is exempt from immigration control, can stay indefinitely in the UK, has the right of abode in the UK or has no time limit on their stay in the UK
  • -
  • a current Immigration Status Document showing that the person has indefinite leave to stay in the UK or has no time limit to their stay
  • -
  • other documents exempting the person from immigration control (eg diplomatic passports, NATO ID card)
  • -
- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
Is the person: - from the EU, EEA or Switzerland
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.txt new file mode 100644 index 00000000000..722fe48ff92 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.txt @@ -0,0 +1,20 @@ +Does the person have any of the following: + +- a Registration Certificate or Document Certifying Permanent Residence issued by the Home Office to a national of the EU, EEA or Switzerland +- a valid Biometric Residence Permit issued by the Home Office endorsed to show they’re allowed to stay indefinitely in the UK +- a Permanent Residence Card, indefinite leave to remain, indefinite leave to enter or no time limit card issued by the Home Office +- a valid passport showing that the person is exempt from immigration control, can stay indefinitely in the UK, has the right of abode in the UK or has no time limit on their stay in the UK +- a current Immigration Status Document showing that the person has indefinite leave to stay in the UK or has no time limit to their stay +- other documents exempting the person from immigration control (eg diplomatic passports, NATO ID card) + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.html deleted file mode 100644 index acbf7b1f02f..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have 2 of the following: -

-
-
-
    -
  • a full birth or adoption certificate (that shows details of at least one of the birth or adoptive parents) from the UK, the Channel Islands, the Isle of Man or Ireland
  • -
  • a letter from a UK police force issued within the last 3 months confirming the person is a victim of crime and their documents have been stolen
  • -
  • evidence that the person is currently serving in the UK armed forces or has previously served
  • -
  • a current UK driving licence (either full or provisional)
  • -
  • a Disclosure or Barring Service certificate issued in the last 3 months
  • -
  • benefits paperwork from HMRC, a local authority, the Department for Work and Pensions (DWP) or Jobcentre Plus within the last 3 months
  • -
  • a letter dated in the last 3 months from a UK further or higher education institution confirming the person has been accepted on a course, the name of the institution, and the name and length of the course
  • -
  • a letter dated in the last 3 months from an organisation that operates a scheme to prevent or resolve homelessness with the person’s name and likely address
  • -
  • a letter showing supervision order dated in the last 3 months from the National Offender Management Service in England and Wales (or the equivalents in Scotland or Northern Ireland)
  • -
  • HM prison discharge papers dated in the last 6 months (or the same from the Scottish or Northern Ireland Prison Service)
  • -
  • a letter dated in the last 3 months from a British passport holder who does a job listed in annex A of the code of practice and has known the person for at least 3 months (with their name, address, passport number, job and place of work (or former place of work if retired), and how long they have known the holder and in what capacity)
  • -
  • an official letter or document (dated within the last 3 months) from a government or Local Authority (with their name and work address) that confirms the person’s name
  • -
  • an official letter (dated within the last 3 months) from their employer (with their name and company address) that confirms the person’s name, that they’re an employee and their employee reference number or National Insurance number
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
Is the person: - from the EU, EEA or Switzerland
Does the person have any of the following: - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.txt new file mode 100644 index 00000000000..dbdb69485fa --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.txt @@ -0,0 +1,27 @@ +Does the person have 2 of the following: + +- a full birth or adoption certificate (that shows details of at least one of the birth or adoptive parents) from the UK, the Channel Islands, the Isle of Man or Ireland +- a letter from a UK police force issued within the last 3 months confirming the person is a victim of crime and their documents have been stolen +- evidence that the person is currently serving in the UK armed forces or has previously served +- a current UK driving licence (either full or provisional) +- a Disclosure or Barring Service certificate issued in the last 3 months +- benefits paperwork from HMRC, a local authority, the Department for Work and Pensions (DWP) or Jobcentre Plus within the last 3 months +- a letter dated in the last 3 months from a UK further or higher education institution confirming the person has been accepted on a course, the name of the institution, and the name and length of the course +- a letter dated in the last 3 months from an organisation that operates a scheme to prevent or resolve homelessness with the person's name and likely address +- a letter showing supervision order dated in the last 3 months from the National Offender Management Service in England and Wales (or the equivalents in Scotland or Northern Ireland) +- HM prison discharge papers dated in the last 6 months (or the same from the Scottish or Northern Ireland Prison Service) +- a letter dated in the last 3 months from a British passport holder who does a job listed in annex A of the [code of practice](/government/publications/right-to-rent-landlords-code-of-practice/code-of-practice-on-illegal-immigrants-and-private-rented-accommodation-for-tenancies-starting-on-or-after-1-february-2016#annex-a---list-of-acceptable-professional-persons) and has known the person for at least 3 months (with their name, address, passport number, job and place of work (or former place of work if retired), and how long they have known the holder and in what capacity) +- an official letter or document (dated within the last 3 months) from a government or Local Authority (with their name and work address) that confirms the person’s name +- an official letter (dated within the last 3 months) from their employer (with their name and company address) that confirms the person’s name, that they’re an employee and their employee reference number or National Insurance number + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.html deleted file mode 100644 index 10d90b26042..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have any of the following: -

-
-
-
    -
  • a passport endorsed to show that the person can stay in the UK temporarily
  • -
  • a current Biometric Residence Permit issued by the Home Office to the person showing that they can currently stay in the UK temporarily
  • -
  • an Immigration Status Document issued by the Home Office with an endorsement showing the person can currently stay in the UK temporarily
  • -
- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
Is the person: - from the EU, EEA or Switzerland
Does the person have any of the following: - No
Does the person have 2 of the following: - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.txt new file mode 100644 index 00000000000..7170aac84ea --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.txt @@ -0,0 +1,17 @@ +Does the person have any of the following: + +- a passport endorsed to show that the person can stay in the UK temporarily +- a current Biometric Residence Permit issued by the Home Office to the person showing that they can currently stay in the UK temporarily +- an Immigration Status Document issued by the Home Office with an endorsement showing the person can currently stay in the UK temporarily + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.html deleted file mode 100644 index d813793e2fa..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have a current Residence Card that is issued by the Home Office to a non-EEA national who is the family member of an EU, EEA or Swiss national? -

-
-
-

This includes a current Accession Card or Derivative Card.

- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
Is the person: - from the EU, EEA or Switzerland
Does the person have any of the following: - No
Does the person have 2 of the following: - No
Does the person have any of the following: - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.txt new file mode 100644 index 00000000000..d0f9b20c4bc --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.txt @@ -0,0 +1,15 @@ +Does the person have a current Residence Card that is issued by the Home Office to a non-EEA national who is the family member of an EU, EEA or Swiss national? + +This includes a current Accession Card or Derivative Card. + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.html deleted file mode 100644 index cf7f952fcaf..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have an application for a Registration Card issued by the Home Office showing that they can stay in the UK? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
Is the person: - from the EU, EEA or Switzerland
Does the person have any of the following: - No
Does the person have 2 of the following: - No
Does the person have any of the following: - No
Does the person have a current Residence Card that is issued by the Home Office to a non-EEA national who is the family member of an EU, EEA or Swiss national? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.txt new file mode 100644 index 00000000000..3f51b6912df --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.txt @@ -0,0 +1,14 @@ +Does the person have an application for a Registration Card issued by the Home Office showing that they can stay in the UK? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.html b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.html deleted file mode 100644 index 58a8465e83e..00000000000 --- a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.html +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the person have an outstanding immigration case, immigration appeal or administrative review? -

-
-
-

They must also provide their Home Office reference number.

- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enter the postcode of the property you want to let: - B1 1PW
Is the person renting the property as their main home? - Yes
Is the person at least 18 years of age? - Yes
Does the person have a current or expired UK or Republic of Ireland passport or are they a named person in their parent’s UK or Republic of Ireland passport? - No
Does the person have a certificate of right of abode in their passport? - No
Does the person have a Certificate of Registration or Naturalisation as a British citizen? - No
Is the person: - from the EU, EEA or Switzerland
Does the person have any of the following: - No
Does the person have 2 of the following: - No
Does the person have any of the following: - No
Does the person have a current Residence Card that is issued by the Home Office to a non-EEA national who is the family member of an EU, EEA or Swiss national? - No
Does the person have an application for a Registration Card issued by the Home Office showing that they can stay in the UK? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.txt b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.txt new file mode 100644 index 00000000000..e9ab4b31003 --- /dev/null +++ b/test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.txt @@ -0,0 +1,15 @@ +Does the person have an outstanding immigration case, immigration appeal or administrative review? + +They must also provide their Home Office reference number. + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/landlord-immigration-check/y.html b/test/artefacts/landlord-immigration-check/y.html deleted file mode 100644 index db410c02dde..00000000000 --- a/test/artefacts/landlord-immigration-check/y.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - Check if someone can rent your residential property - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Enter the postcode of the property you want to let: -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/landlord-immigration-check/y.txt b/test/artefacts/landlord-immigration-check/y.txt new file mode 100644 index 00000000000..f5e2575564b --- /dev/null +++ b/test/artefacts/landlord-immigration-check/y.txt @@ -0,0 +1,12 @@ +Enter the postcode of the property you want to let: + + + + + + + + + + + diff --git a/test/artefacts/legalisation-document-checker/y.html b/test/artefacts/legalisation-document-checker/y.html deleted file mode 100644 index e32016e8fb1..00000000000 --- a/test/artefacts/legalisation-document-checker/y.html +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - Check if documents can be legalised - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which documents do you want legalised? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/legalisation-document-checker/y.txt b/test/artefacts/legalisation-document-checker/y.txt new file mode 100644 index 00000000000..35c7860986c --- /dev/null +++ b/test/artefacts/legalisation-document-checker/y.txt @@ -0,0 +1,73 @@ +Which documents do you want legalised? + + + + + + * acro-police-certificate: ACRO Police Certificate + * affidavit: Affidavit + * articles-of-association: Articles of association + * bank-statement: Bank statement + * baptism-certificate: Baptism certificate + * birth-certificate: Birth certificate + * certificate-of-incorporation: Certificate of incorporation + * certificate-of-freesale: Certificate of freesale + * certificate-of-memorandum: Certificate of memorandum + * certificate-of-naturalisation: Certificate of naturalisation + * certificate-of-no-impediment: Certificate of no impediment + * chamber-of-commerce-document: Chamber of Commerce document + * change-of-name-deed: Change of name deed + * civil-partnership-certificate: Civil partnership certificate + * criminal-records-bureau-document: Criminal Records Bureau (CRB) document + * criminal-records-check: Criminal records check + * companies-house-document: Companies House document + * county-court-document: County court document + * court-document: Court document + * court-of-bankruptcy-document: Court of Bankruptcy document + * death-certificate: Death certificate + * decree-nisi: Decree nisi + * decree-absolute: Decree absolute + * degree-certificate-uk: Degree certificate (UK) + * department-of-business-innovation-skills-document: Department of Business, Innovation and Skills (BIS) document + * department-of-health-document: Department of Health document + * diploma: Diploma + * disclosure-scotland-document: Disclosure Scotland document + * doctor-letter-medical: Doctor’s letter (medical) + * driving-licence: Driving licence (copy) + * educational-certificate-uk: Educational certificate (UK) + * export-certificate: Export certificate + * family-division-high-court-justice-document: Family Division of the High Court of Justice document + * fingerprints: Fingerprints document + * fit-note-from-a-doctor: Fit note (from a doctor) + * government-issued-document: Government issued document + * grant-of-probate: Grant of probate + * high-court-justice-document: High Court of Justice document + * hmrc-document: HM Revenue and Customs document + * home-office-document: Home Office document + * last-will-testament: Last will and testament + * letter-from-employer: Letter from an employer + * letter-of-enrolment: Letter of enrolment + * letter-of-invitation: Letter of invitation + * letter-of-no-trace: Letter of no trace + * medical-report: Medical report + * marriage-certificate: Marriage certificate + * name-change-deed-or-document: Name change deed or document + * passport-copy-only: Passport (copy only) + * pet-export-document: Pet export document from the Department of Environment, Food and Rural Affairs (DEFRA) + * police-disclosure-document: Police disclosure document + * power-of-attorney: Power of attorney + * probate: Probate + * reference-from-an-employer: Reference from an employer + * religious-document: Religious document + * sheriff-court-document: Sheriff court document + * sick-note-from-doctor: Sick note (from a doctor) + * statutory-declaration: Statutory declaration + * test-results-medical: Test results (medical) + * translation: Translation + * utility-bill: Utility bill + + + + + + diff --git a/test/artefacts/marriage-abroad/albania.html b/test/artefacts/marriage-abroad/albania.html deleted file mode 100644 index d818df59457..00000000000 --- a/test/artefacts/marriage-abroad/albania.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - Getting married abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where do you live? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/marriage-abroad/albania.txt b/test/artefacts/marriage-abroad/albania.txt new file mode 100644 index 00000000000..a5a8d7abad3 --- /dev/null +++ b/test/artefacts/marriage-abroad/albania.txt @@ -0,0 +1,15 @@ +Where do you live? + + + + + + * uk: UK + * ceremony_country: Albania + * third_country: Elsewhere + + + + + + diff --git a/test/artefacts/marriage-abroad/albania/uk.html b/test/artefacts/marriage-abroad/albania/uk.html deleted file mode 100644 index b639e92c79c..00000000000 --- a/test/artefacts/marriage-abroad/albania/uk.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - Getting married abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your partner’s nationality? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/marriage-abroad/albania/uk.txt b/test/artefacts/marriage-abroad/albania/uk.txt new file mode 100644 index 00000000000..56dc388fc83 --- /dev/null +++ b/test/artefacts/marriage-abroad/albania/uk.txt @@ -0,0 +1,15 @@ +What is your partner’s nationality? + + + + + + * partner_british: British + * partner_local: National of Albania + * partner_other: National of another country + + + + + + diff --git a/test/artefacts/marriage-abroad/albania/uk/partner_british.html b/test/artefacts/marriage-abroad/albania/uk/partner_british.html deleted file mode 100644 index 01b5ccbddce..00000000000 --- a/test/artefacts/marriage-abroad/albania/uk/partner_british.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Getting married abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is your partner of the opposite sex, or the same sex? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/marriage-abroad/albania/uk/partner_british.txt b/test/artefacts/marriage-abroad/albania/uk/partner_british.txt new file mode 100644 index 00000000000..29bdc6e27f1 --- /dev/null +++ b/test/artefacts/marriage-abroad/albania/uk/partner_british.txt @@ -0,0 +1,14 @@ +Is your partner of the opposite sex, or the same sex? + + + + + + * opposite_sex: Opposite sex + * same_sex: Same sex + + + + + + diff --git a/test/artefacts/marriage-abroad/france.html b/test/artefacts/marriage-abroad/france.html deleted file mode 100644 index da4af38fc31..00000000000 --- a/test/artefacts/marriage-abroad/france.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - Getting married abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you want to get married or enter into a PACS? -

-
- -

PACS (‘pacte civil de solidarité’, or ‘civil solidarity pact’) is the French version of civil partnership, and can be entered into by same-sex or opposite-sex couples.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/marriage-abroad/france.txt b/test/artefacts/marriage-abroad/france.txt new file mode 100644 index 00000000000..098fa98c41e --- /dev/null +++ b/test/artefacts/marriage-abroad/france.txt @@ -0,0 +1,14 @@ +Do you want to get married or enter into a PACS? + + + +PACS (‘pacte civil de solidarité’, or ‘civil solidarity pact’) is the French version of civil partnership, and can be entered into by same-sex or opposite-sex couples. + + * marriage: Marriage + * pacs: PACS + + + + + + diff --git a/test/artefacts/marriage-abroad/y.html b/test/artefacts/marriage-abroad/y.html deleted file mode 100644 index 76bda573ddb..00000000000 --- a/test/artefacts/marriage-abroad/y.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - Getting married abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where do you want to get married? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/marriage-abroad/y.txt b/test/artefacts/marriage-abroad/y.txt new file mode 100644 index 00000000000..9c2d736e670 --- /dev/null +++ b/test/artefacts/marriage-abroad/y.txt @@ -0,0 +1,237 @@ +Where do you want to get married? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption.html b/test/artefacts/maternity-paternity-calculator/adoption.html deleted file mode 100644 index fdf9b1a8386..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the employee taking paternity leave to adopt a child? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption.txt b/test/artefacts/maternity-paternity-calculator/adoption.txt new file mode 100644 index 00000000000..7aeb03c1025 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption.txt @@ -0,0 +1,14 @@ +Is the employee taking paternity leave to adopt a child? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no.html b/test/artefacts/maternity-paternity-calculator/adoption/no.html deleted file mode 100644 index b9880e370b6..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When was the child matched with the employee? -

-
- -

For overseas adoptions, enter the official notification date (the permission to adopt from abroad).

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no.txt b/test/artefacts/maternity-paternity-calculator/adoption/no.txt new file mode 100644 index 00000000000..3b29d2221ec --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no.txt @@ -0,0 +1,12 @@ +When was the child matched with the employee? + + + +For overseas adoptions, enter the official notification date (the permission to adopt from abroad). + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.html deleted file mode 100644 index 1b6d8e81c47..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When will the child be placed with the employee? -

-
- -

For overseas adoptions enter the date of arrival in the UK.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.txt new file mode 100644 index 00000000000..6df76e8ba94 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.txt @@ -0,0 +1,12 @@ +When will the child be placed with the employee? + + + +For overseas adoptions enter the date of arrival in the UK. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.html deleted file mode 100644 index e9c14ae0d20..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the employee work for you on or before 18 October 2014? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.txt new file mode 100644 index 00000000000..3282a88322e --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.txt @@ -0,0 +1,14 @@ +Did the employee work for you on or before 18 October 2014? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.html deleted file mode 100644 index 6bc153c8120..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the employee have an employment contract with you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.txt new file mode 100644 index 00000000000..562633a01f6 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.txt @@ -0,0 +1,14 @@ +Does the employee have an employment contract with you? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.html deleted file mode 100644 index afda85213fa..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the employee (or will they be) on your payroll on 21 December 2014? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.txt new file mode 100644 index 00000000000..2fbdcb58751 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.txt @@ -0,0 +1,14 @@ +Was the employee (or will they be) on your payroll on 21 December 2014? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.html deleted file mode 100644 index 53af46d8c5b..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When does the employee want to start their leave? -

-
- -

Leave can’t start before 23 March 2015. For overseas adoptions your leave must start within 28 days of the child arriving in the UK.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 21 December 2014? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.txt new file mode 100644 index 00000000000..e071caaf54c --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.txt @@ -0,0 +1,12 @@ +When does the employee want to start their leave? + + + +Leave can’t start before 23 March 2015. For overseas adoptions your leave must start within 28 days of the child arriving in the UK. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.html deleted file mode 100644 index 0179fef7f0b..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday on or before Saturday, 11 April 2015? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 21 December 2014? - Yes
When does the employee want to start their leave? - 6 April 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.txt new file mode 100644 index 00000000000..5b822f15fb7 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.txt @@ -0,0 +1,12 @@ +What was the last normal payday on or before Saturday, 11 April 2015? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.html deleted file mode 100644 index 87c0810d96a..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday before Friday, 07 November 2014? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 21 December 2014? - Yes
When does the employee want to start their leave? - 6 April 2015
What was the last normal payday on or before Saturday, 11 April 2015? - 1 January 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.txt new file mode 100644 index 00000000000..3e0c7b45f50 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.txt @@ -0,0 +1,12 @@ +What was the last normal payday before Friday, 07 November 2014? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01.html deleted file mode 100644 index d3caac1a570..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay the employee? -

-
- -

If they’re paid irregularly choose ‘weekly’.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 21 December 2014? - Yes
When does the employee want to start their leave? - 6 April 2015
What was the last normal payday on or before Saturday, 11 April 2015? - 1 January 2015
What was the last normal payday before Friday, 07 November 2014? - 1 November 2014
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01.txt new file mode 100644 index 00000000000..b00198341cd --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01.txt @@ -0,0 +1,16 @@ +How often do you pay the employee? + + + +If they’re paid irregularly choose ‘weekly’. + + * weekly: Weekly + * every_2_weeks: Every 2 weeks + * every_4_weeks: Every 4 weeks + * monthly: Monthly + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly.html deleted file mode 100644 index 6bb38d7b022..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What were the employee’s total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? -

-
- -

This is their earnings before deductions like PAYE, pension or National Insurance contributions.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 21 December 2014? - Yes
When does the employee want to start their leave? - 6 April 2015
What was the last normal payday on or before Saturday, 11 April 2015? - 1 January 2015
What was the last normal payday before Friday, 07 November 2014? - 1 November 2014
How often do you pay the employee? - Weekly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly.txt new file mode 100644 index 00000000000..16c16bc5eab --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly.txt @@ -0,0 +1,12 @@ +What were the employee’s total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? + + + +This is their earnings before deductions like PAYE, pension or National Insurance contributions. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly/3000.html b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly/3000.html deleted file mode 100644 index 3d8f50398f8..00000000000 --- a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly/3000.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How do you want the adoption pay calculated? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Adoption
Is the employee taking paternity leave to adopt a child? - No
When was the child matched with the employee? - 5 April 2015
When will the child be placed with the employee? - 6 April 2015
Did the employee work for you on or before 18 October 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 21 December 2014? - Yes
When does the employee want to start their leave? - 6 April 2015
What was the last normal payday on or before Saturday, 11 April 2015? - 1 January 2015
What was the last normal payday before Friday, 07 November 2014? - 1 November 2014
How often do you pay the employee? - Weekly
What were the employee’s total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly/3000.txt b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly/3000.txt new file mode 100644 index 00000000000..309d2c9004e --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01/2014-11-01/weekly/3000.txt @@ -0,0 +1,14 @@ +How do you want the adoption pay calculated? + + + + + + * weekly_starting: Weekly starting 6 April 2015 + * usual_paydates: Based on their usual paydates + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity.html b/test/artefacts/maternity-paternity-calculator/maternity.html deleted file mode 100644 index 34cceaa897f..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is the baby’s due date? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity.txt b/test/artefacts/maternity-paternity-calculator/maternity.txt new file mode 100644 index 00000000000..5a75a4517c0 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity.txt @@ -0,0 +1,12 @@ +What is the baby’s due date? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.html deleted file mode 100644 index 3fdac74f1f5..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the employee have an employment contract with you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.txt new file mode 100644 index 00000000000..562633a01f6 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.txt @@ -0,0 +1,14 @@ +Does the employee have an employment contract with you? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.html deleted file mode 100644 index 026a84fb37a..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When does the employee want to start their leave? -

-
- -

Based on the baby's due date, leave usually can’t start before 12 October 2014.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.txt new file mode 100644 index 00000000000..b7846195b3d --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.txt @@ -0,0 +1,12 @@ +When does the employee want to start their leave? + + + +Based on the baby's due date, leave usually can’t start before 12 October 2014. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.html deleted file mode 100644 index f671b19e11f..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the employee work for you on or before 29 March 2014? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.txt new file mode 100644 index 00000000000..f42529dc5d9 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.txt @@ -0,0 +1,14 @@ +Did the employee work for you on or before 29 March 2014? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.html deleted file mode 100644 index 145f00ae068..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the employee (or will they be) on your payroll on 14 September 2014? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.txt new file mode 100644 index 00000000000..5ac7ab9c28a --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.txt @@ -0,0 +1,14 @@ +Was the employee (or will they be) on your payroll on 14 September 2014? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.html deleted file mode 100644 index ca748417bc6..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday on or before Saturday, 20 September 2014? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.txt new file mode 100644 index 00000000000..12cbce4bfe0 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.txt @@ -0,0 +1,12 @@ +What was the last normal payday on or before Saturday, 20 September 2014? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.html deleted file mode 100644 index 6e6917ae8c3..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday before Saturday, 26 July 2014? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.txt new file mode 100644 index 00000000000..f9cd78ba0c3 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.txt @@ -0,0 +1,12 @@ +What was the last normal payday before Saturday, 26 July 2014? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.html deleted file mode 100644 index dc4abb85f9c..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay the employee? -

-
- -

If they’re paid irregularly choose ‘weekly’.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.txt new file mode 100644 index 00000000000..b00198341cd --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.txt @@ -0,0 +1,16 @@ +How often do you pay the employee? + + + +If they’re paid irregularly choose ‘weekly’. + + * weekly: Weekly + * every_2_weeks: Every 2 weeks + * every_4_weeks: Every 4 weeks + * monthly: Monthly + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates.html deleted file mode 100644 index 052d1453866..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When in the month is the employee paid? -

-
- -

If the pay date is the 29th, 30th or 31st choose 'Last working day of the month'.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Monthly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
How do you want the SMP calculated? - based on their usual paydates
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates.txt new file mode 100644 index 00000000000..2bf4fac9f93 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates.txt @@ -0,0 +1,17 @@ +When in the month is the employee paid? + + + +If the pay date is the 29th, 30th or 31st choose 'Last working day of the month'. + + * first_day_of_the_month: First day of the month + * last_day_of_the_month: Last day of the month + * specific_date_each_month: Specific date each month + * last_working_day_of_the_month: Last working day of the month + * a_certain_week_day_each_month: A certain week day each month + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month.html deleted file mode 100644 index a6fec1d6ad2..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What particular day of the month is the employee paid? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Monthly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
How do you want the SMP calculated? - based on their usual paydates
When in the month is the employee paid? - A certain week day each month
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month.txt new file mode 100644 index 00000000000..2b8cbd2cf49 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month.txt @@ -0,0 +1,19 @@ +What particular day of the month is the employee paid? + + + + + + * Sunday: Sunday + * Monday: Monday + * Tuesday: Tuesday + * Wednesday: Wednesday + * Thursday: Thursday + * Friday: Friday + * Saturday: Saturday + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month/Sunday.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month/Sunday.html deleted file mode 100644 index 37c53ed8fd0..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month/Sunday.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the employee paid on the 1st, 2nd, 3rd, 4th or last Sunday? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Monthly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
How do you want the SMP calculated? - based on their usual paydates
When in the month is the employee paid? - A certain week day each month
What particular day of the month is the employee paid? - Sunday
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month/Sunday.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month/Sunday.txt new file mode 100644 index 00000000000..5460d8a41a9 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/a_certain_week_day_each_month/Sunday.txt @@ -0,0 +1,17 @@ +Is the employee paid on the 1st, 2nd, 3rd, 4th or last Sunday? + + + + + + * first: 1st + * second: 2nd + * third: 3rd + * fourth: 4th + * last: last + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/last_working_day_of_the_month.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/last_working_day_of_the_month.html deleted file mode 100644 index 92a0108306d..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/last_working_day_of_the_month.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What days does the employee work? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Monthly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
How do you want the SMP calculated? - based on their usual paydates
When in the month is the employee paid? - Last working day of the month
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/last_working_day_of_the_month.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/last_working_day_of_the_month.txt new file mode 100644 index 00000000000..6774f1b516a --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/last_working_day_of_the_month.txt @@ -0,0 +1,19 @@ +What days does the employee work? + + + + + + * 0: Sunday + * 1: Monday + * 2: Tuesday + * 3: Wednesday + * 4: Thursday + * 5: Friday + * 6: Saturday + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/specific_date_each_month.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/specific_date_each_month.html deleted file mode 100644 index a5da48f89d3..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/specific_date_each_month.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What specific date each month is the employee paid? -

-
- -

If they’re paid on the 25th enter "25". The calculator will treat an employee as paid on the last day of the month if you enter 29, 30 or 31.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Monthly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
How do you want the SMP calculated? - based on their usual paydates
When in the month is the employee paid? - Specific date each month
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/specific_date_each_month.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/specific_date_each_month.txt new file mode 100644 index 00000000000..3fd77272ea6 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/monthly/100.0/usual_paydates/specific_date_each_month.txt @@ -0,0 +1,12 @@ +What specific date each month is the employee paid? + + + +If they’re paid on the 25th enter "25". The calculator will treat an employee as paid on the last day of the month if you enter 29, 30 or 31. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.html deleted file mode 100644 index 4bdfed4f315..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? -

-
- -

This is their earnings before deductions like PAYE, pension or National Insurance contributions.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Weekly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.txt new file mode 100644 index 00000000000..7ddf709f740 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.txt @@ -0,0 +1,12 @@ +What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? + + + +This is their earnings before deductions like PAYE, pension or National Insurance contributions. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.0/usual_paydates.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.0/usual_paydates.html deleted file mode 100644 index 9079a3ac163..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.0/usual_paydates.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When is your employee’s next pay day on or after 1 January 2015? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Weekly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
How do you want the SMP calculated? - based on their usual paydates
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.0/usual_paydates.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.0/usual_paydates.txt new file mode 100644 index 00000000000..da2a387b604 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.0/usual_paydates.txt @@ -0,0 +1,12 @@ +When is your employee’s next pay day on or after 1 January 2015? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.html b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.html deleted file mode 100644 index a1b1f9ee5fa..00000000000 --- a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How do you want the SMP calculated? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Maternity
What is the baby’s due date? - 1 January 2015
Does the employee have an employment contract with you? - Yes
When does the employee want to start their leave? - 1 January 2015
Did the employee work for you on or before 29 March 2014? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
What was the last normal payday on or before Saturday, 20 September 2014? - 19 September 2014
What was the last normal payday before Saturday, 26 July 2014? - 24 July 2014
How often do you pay the employee? - Weekly
What were the employee’s total earnings between Friday, 25 July 2014 and Friday, 19 September 2014? - £100
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.txt b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.txt new file mode 100644 index 00000000000..18568d27db2 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.txt @@ -0,0 +1,14 @@ +How do you want the SMP calculated? + + + + + + * weekly_starting: weekly starting 1 January 2015 + * usual_paydates: based on their usual paydates + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity.html b/test/artefacts/maternity-paternity-calculator/paternity.html deleted file mode 100644 index e908c7338de..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the paternity leave or pay for an adoption? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity.txt b/test/artefacts/maternity-paternity-calculator/paternity.txt new file mode 100644 index 00000000000..c4362bb91f2 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity.txt @@ -0,0 +1,14 @@ +Is the paternity leave or pay for an adoption? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/no.html b/test/artefacts/maternity-paternity-calculator/paternity/no.html deleted file mode 100644 index ec50c5462a7..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/no.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is the baby’s due date? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/no.txt b/test/artefacts/maternity-paternity-calculator/paternity/no.txt new file mode 100644 index 00000000000..5a75a4517c0 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/no.txt @@ -0,0 +1,12 @@ +What is the baby’s due date? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.html deleted file mode 100644 index 694dcb77c8d..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is the actual birth date? -

-
- -

If unknown enter the due date.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.txt new file mode 100644 index 00000000000..52c193cffbc --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.txt @@ -0,0 +1,12 @@ +What is the actual birth date? + + + +If unknown enter the due date. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.html deleted file mode 100644 index fcb31f43610..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the employee responsible for the child’s upbringing and either the biological father or the mother’s husband or partner? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - No
What is the baby’s due date? - 1 January 2015
What is the actual birth date? - 1 January 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.txt new file mode 100644 index 00000000000..90f9eeb161d --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.txt @@ -0,0 +1,14 @@ +Is the employee responsible for the child’s upbringing and either the biological father or the mother’s husband or partner? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes.html b/test/artefacts/maternity-paternity-calculator/paternity/yes.html deleted file mode 100644 index 5250661c196..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When was the child matched with the employee? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes.txt new file mode 100644 index 00000000000..fd12da29443 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes.txt @@ -0,0 +1,12 @@ +When was the child matched with the employee? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.html deleted file mode 100644 index a07c01399c2..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When will the child be placed with the employee? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.txt new file mode 100644 index 00000000000..cc67b12c25f --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.txt @@ -0,0 +1,12 @@ +When will the child be placed with the employee? + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.html deleted file mode 100644 index 5d436153dec..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.txt new file mode 100644 index 00000000000..8606fa17011 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.txt @@ -0,0 +1,14 @@ +Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.html deleted file mode 100644 index 20a8e08fa1c..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the employee work for you on or before 12 July 2014? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.txt new file mode 100644 index 00000000000..0d7fa583ca8 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.txt @@ -0,0 +1,14 @@ +Did the employee work for you on or before 12 July 2014? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.html deleted file mode 100644 index 665c648cdf0..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the employee have an employment contract with you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.txt new file mode 100644 index 00000000000..562633a01f6 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.txt @@ -0,0 +1,14 @@ +Does the employee have an employment contract with you? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.html deleted file mode 100644 index be9f74c31ba..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the employee (or will they be) on your payroll on 14 September 2014? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.txt new file mode 100644 index 00000000000..5ac7ab9c28a --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.txt @@ -0,0 +1,14 @@ +Was the employee (or will they be) on your payroll on 14 September 2014? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.html deleted file mode 100644 index 8c55c6378c0..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Will the employee still be employed by you on 1 January 2015? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.txt new file mode 100644 index 00000000000..0214e84c15a --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.txt @@ -0,0 +1,14 @@ +Will the employee still be employed by you on 1 January 2015? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.html deleted file mode 100644 index 7ed277f08b7..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When does the employee want to start their paternity leave? -

-
- -

Leave cannot start before Thursday, 01 January 2015.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.txt new file mode 100644 index 00000000000..ff352bc9b52 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.txt @@ -0,0 +1,12 @@ +When does the employee want to start their paternity leave? + + + +Leave cannot start before Thursday, 01 January 2015. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.html deleted file mode 100644 index 8c4bbad7dce..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How long is the employee's paternity leave? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.txt new file mode 100644 index 00000000000..63b7e4afe64 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.txt @@ -0,0 +1,14 @@ +How long is the employee's paternity leave? + + + + + + * one_week: One week + * two_weeks: Two weeks + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.html deleted file mode 100644 index 5ef2fb20240..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday on or before Saturday, 03 January 2015 -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.txt new file mode 100644 index 00000000000..d0296b1a9cd --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.txt @@ -0,0 +1,12 @@ +What was the last normal payday on or before Saturday, 03 January 2015 + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01.html deleted file mode 100644 index 33e48fedd2c..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What was the last normal payday before Friday, 07 November 2014 -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01.txt new file mode 100644 index 00000000000..569d59e63cd --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01.txt @@ -0,0 +1,12 @@ +What was the last normal payday before Friday, 07 November 2014 + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01.html deleted file mode 100644 index 123ad62fb07..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay the employee? -

-
- -

If they are paid irregularly choose 'weekly'.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01.txt new file mode 100644 index 00000000000..3ffb2ef4d87 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01.txt @@ -0,0 +1,16 @@ +How often do you pay the employee? + + + +If they are paid irregularly choose 'weekly'. + + * weekly: Weekly + * every_2_weeks: Every 2 weeks + * every_4_weeks: Every 4 weeks + * monthly: Monthly + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates.html deleted file mode 100644 index f3c8592bd4f..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When in the month is the employee paid? -

-
- -

If the pay date is the 29th, 30th or 31st choose 'Last working day of the month'.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Monthly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
How do you want the paternity pay calculated? - Based on their usual paydates
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates.txt new file mode 100644 index 00000000000..2bf4fac9f93 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates.txt @@ -0,0 +1,17 @@ +When in the month is the employee paid? + + + +If the pay date is the 29th, 30th or 31st choose 'Last working day of the month'. + + * first_day_of_the_month: First day of the month + * last_day_of_the_month: Last day of the month + * specific_date_each_month: Specific date each month + * last_working_day_of_the_month: Last working day of the month + * a_certain_week_day_each_month: A certain week day each month + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month.html deleted file mode 100644 index 4cab0ebfd1b..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What particular day of the month is the employee paid? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Monthly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
How do you want the paternity pay calculated? - Based on their usual paydates
When in the month is the employee paid? - A certain week day each month
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month.txt new file mode 100644 index 00000000000..a4933337f30 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month.txt @@ -0,0 +1,19 @@ +What particular day of the month is the employee paid? + + + + + + * 0: Sunday + * 1: Monday + * 2: Tuesday + * 3: Wednesday + * 4: Thursday + * 5: Friday + * 6: Saturday + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month/0.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month/0.html deleted file mode 100644 index e91cd2c59ad..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month/0.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the employee paid on the 1st, 2nd, 3rd, 4th or last Sunday? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Monthly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
How do you want the paternity pay calculated? - Based on their usual paydates
When in the month is the employee paid? - A certain week day each month
What particular day of the month is the employee paid? - Sunday
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month/0.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month/0.txt new file mode 100644 index 00000000000..5460d8a41a9 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/a_certain_week_day_each_month/0.txt @@ -0,0 +1,17 @@ +Is the employee paid on the 1st, 2nd, 3rd, 4th or last Sunday? + + + + + + * first: 1st + * second: 2nd + * third: 3rd + * fourth: 4th + * last: last + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/last_working_day_of_the_month.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/last_working_day_of_the_month.html deleted file mode 100644 index b6b9a6ddbe0..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/last_working_day_of_the_month.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What days does the employee work? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Monthly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
How do you want the paternity pay calculated? - Based on their usual paydates
When in the month is the employee paid? - Last working day of the month
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/last_working_day_of_the_month.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/last_working_day_of_the_month.txt new file mode 100644 index 00000000000..6774f1b516a --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/last_working_day_of_the_month.txt @@ -0,0 +1,19 @@ +What days does the employee work? + + + + + + * 0: Sunday + * 1: Monday + * 2: Tuesday + * 3: Wednesday + * 4: Thursday + * 5: Friday + * 6: Saturday + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/specific_date_each_month.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/specific_date_each_month.html deleted file mode 100644 index abf46796d60..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/specific_date_each_month.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What specific date each month is the employee paid? -

-
- -

If they are paid on the 25th enter '25'. The calculator will treat an employee as paid on the last day of the month if you enter '29', '30' or '31'.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Monthly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
How do you want the paternity pay calculated? - Based on their usual paydates
When in the month is the employee paid? - Specific date each month
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/specific_date_each_month.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/specific_date_each_month.txt new file mode 100644 index 00000000000..a138af401e9 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/monthly/3000.0/usual_paydates/specific_date_each_month.txt @@ -0,0 +1,12 @@ +What specific date each month is the employee paid? + + + +If they are paid on the 25th enter '25'. The calculator will treat an employee as paid on the last day of the month if you enter '29', '30' or '31'. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly.html deleted file mode 100644 index 40ff09b812c..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? -

-
- -

This is the earnings before deductions like PAYE, pendion or National Insurance contributions.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Weekly
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly.txt new file mode 100644 index 00000000000..22db1d6c9b5 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly.txt @@ -0,0 +1,12 @@ +What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? + + + +This is the earnings before deductions like PAYE, pendion or National Insurance contributions. + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.0/usual_paydates.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.0/usual_paydates.html deleted file mode 100644 index 06f2cd0583d..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.0/usual_paydates.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When is your employee's next pay day on or after 1 January 2015 -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Weekly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
How do you want the paternity pay calculated? - Based on their usual paydates
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.0/usual_paydates.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.0/usual_paydates.txt new file mode 100644 index 00000000000..7de020b6283 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.0/usual_paydates.txt @@ -0,0 +1,12 @@ +When is your employee's next pay day on or after 1 January 2015 + + + + + + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.html b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.html deleted file mode 100644 index 036d55d9a91..00000000000 --- a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How do you want the paternity pay calculated? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What do you want to check? - Paternity
Is the paternity leave or pay for an adoption? - Yes
When was the child matched with the employee? - 1 January 2015
When will the child be placed with the employee? - 1 January 2015
Is the employee responsible for the child's upbringing and the husband or partner of the adopter or the child's adopter? - Yes
Did the employee work for you on or before 12 July 2014? - Yes
Does the employee have an employment contract with you? - Yes
Was the employee (or will they be) on your payroll on 14 September 2014? - Yes
Will the employee still be employed by you on 1 January 2015? - Yes
When does the employee want to start their paternity leave? - 1 January 2015
How long is the employee's paternity leave? - One week
What was the last normal payday on or before Saturday, 03 January 2015 - 1 January 2015
What was the last normal payday before Friday, 07 November 2014 - 1 November 2014
How often do you pay the employee? - Weekly
What were the employee's total earnings between Sunday, 02 November 2014 and Thursday, 01 January 2015? - £3,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.txt b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.txt new file mode 100644 index 00000000000..061616fa155 --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week/2015-01-01/2014-11-01/weekly/3000.txt @@ -0,0 +1,14 @@ +How do you want the paternity pay calculated? + + + + + + * weekly_starting: Weekly starting 1 January 2015 + * usual_paydates: Based on their usual paydates + + + + + + diff --git a/test/artefacts/maternity-paternity-calculator/y.html b/test/artefacts/maternity-paternity-calculator/y.html deleted file mode 100644 index 07c9e5579d1..00000000000 --- a/test/artefacts/maternity-paternity-calculator/y.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - Maternity and paternity calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What do you want to check? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/maternity-paternity-calculator/y.txt b/test/artefacts/maternity-paternity-calculator/y.txt new file mode 100644 index 00000000000..386c6fd41ef --- /dev/null +++ b/test/artefacts/maternity-paternity-calculator/y.txt @@ -0,0 +1,15 @@ +What do you want to check? + + + + + + * maternity: Maternity + * paternity: Paternity + * adoption: Adoption + + + + + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment.html b/test/artefacts/minimum-wage-calculator-employers/current_payment.html deleted file mode 100644 index e6627864d3b..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the worker an apprentice? -

-
- -

If they’re 19 or over and past their first year they don’t count as an apprentice for minimum wage purposes.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment.txt new file mode 100644 index 00000000000..f84dd8008f1 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment.txt @@ -0,0 +1,16 @@ +Is the worker an apprentice? + + + +If they’re 19 or over and past their first year they don’t count as an apprentice for minimum wage purposes. + + * not_an_apprentice: Not an apprentice + * apprentice_under_19: Apprentice under 19 + * apprentice_over_19_first_year: Apprentice aged 19 and over in their first year + * apprentice_over_19_second_year_onwards: Apprentice 19 and over in their second year or onwards + + + + + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.html deleted file mode 100644 index 6caccfd3753..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old is the worker? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.txt new file mode 100644 index 00000000000..ac3f2ccd4f2 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.txt @@ -0,0 +1,12 @@ +How old is the worker? + + + + + + + + +years old + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.html deleted file mode 100644 index a68e550cf48..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often do you pay the worker? -

-
-
-

This is the pay period.

- - -
- -

You pay the worker every

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.txt new file mode 100644 index 00000000000..7177869dcc1 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.txt @@ -0,0 +1,13 @@ +How often do you pay the worker? + +This is the pay period. + + +You pay the worker every + + + + +days + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.html deleted file mode 100644 index bc6b5e515b7..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours does the worker work during the pay period? -

-
- -

Don’t include any overtime or other extra hours the worker might work.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.txt new file mode 100644 index 00000000000..252d42dcf5f --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.txt @@ -0,0 +1,12 @@ +How many hours does the worker work during the pay period? + + + +Don’t include any overtime or other extra hours the worker might work. + + + + +hours + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html deleted file mode 100644 index 9f859178044..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you charge for accommodation per day? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
How many hours does the worker work during the pay period? - 16.0
How much do you pay the worker in the pay period? - £100
How many hours of overtime does the worker work during the pay period? - 0.0
Do you provide accommodation? - Yes, the accommodation is charged for
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt new file mode 100644 index 00000000000..4f2d69cc983 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt @@ -0,0 +1,12 @@ +How much do you charge for accommodation per day? + + + + + + + + +per day + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html deleted file mode 100644 index 344f1857a6d..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days per week does the worker live in the accommodation? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
How many hours does the worker work during the pay period? - 16.0
How much do you pay the worker in the pay period? - £100
How many hours of overtime does the worker work during the pay period? - 0.0
Do you provide accommodation? - Yes, the accommodation is free
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt new file mode 100644 index 00000000000..b60100861b1 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt @@ -0,0 +1,12 @@ +How many days per week does the worker live in the accommodation? + + + + + + + + +days per week + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html deleted file mode 100644 index 9994b4dc939..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you provide accommodation? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
How many hours does the worker work during the pay period? - 16.0
How much do you pay the worker in the pay period? - £100
How many hours of overtime does the worker work during the pay period? - 0.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt new file mode 100644 index 00000000000..2d9bde427a5 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt @@ -0,0 +1,15 @@ +Do you provide accommodation? + + + + + + * no: No + * yes_free: Yes, the accommodation is free + * yes_charged: Yes, the accommodation is charged for + + + + + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html deleted file mode 100644 index 75bd94f9fbc..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you pay the worker for overtime per hour? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
How many hours does the worker work during the pay period? - 16.0
How much do you pay the worker in the pay period? - £100
How many hours of overtime does the worker work during the pay period? - 8.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt new file mode 100644 index 00000000000..03be909f1f9 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt @@ -0,0 +1,12 @@ +How much do you pay the worker for overtime per hour? + + + + + + + + +per hour + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.html deleted file mode 100644 index 40196fb193e..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours of overtime does the worker work during the pay period? -

-
- -

If they don’t work overtime enter 0

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
How many hours does the worker work during the pay period? - 16.0
How much do you pay the worker in the pay period? - £100
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.txt new file mode 100644 index 00000000000..a7a45418083 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.txt @@ -0,0 +1,12 @@ +How many hours of overtime does the worker work during the pay period? + + + +If they don’t work overtime enter 0 + + + + +hours + + diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.html b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.html deleted file mode 100644 index 1312f15bac6..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you pay the worker in the pay period? -

-
- -

Don’t include payments for overtime or anything extra to their pay, eg money for clothes or goods.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you’re paying a worker the National Minimum Wage or the National Living Wage
Is the worker an apprentice? - Not an apprentice
How old is the worker? - 25
How often do you pay the worker? - 1
How many hours does the worker work during the pay period? - 16.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.txt new file mode 100644 index 00000000000..c7aa775a949 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.txt @@ -0,0 +1,12 @@ +How much do you pay the worker in the pay period? + + + +Don’t include payments for overtime or anything extra to their pay, eg money for clothes or goods. + + + + +in the pay period + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment.html b/test/artefacts/minimum-wage-calculator-employers/past_payment.html deleted file mode 100644 index a50ba8a51b6..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which year would you like to check past payments for? -

-
- -

You can go back up to 6 years

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment.txt new file mode 100644 index 00000000000..82186ac8da4 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment.txt @@ -0,0 +1,19 @@ +Which year would you like to check past payments for? + + + +You can go back up to 6 years + + * 2015-10-01: Oct 2015 - Mar 2016 + * 2014-10-01: Oct 2014 - Sep 2015 + * 2013-10-01: Oct 2013 - Sep 2014 + * 2012-10-01: Oct 2012 - Sep 2013 + * 2011-10-01: Oct 2011 - Sep 2012 + * 2010-10-01: Oct 2010 - Sep 2011 + * 2009-10-01: Oct 2009 - Sep 2010 + + + + + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.html deleted file mode 100644 index 55280403bd9..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the worker an apprentice at the time? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.txt new file mode 100644 index 00000000000..5a9a51f60c0 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.txt @@ -0,0 +1,15 @@ +Was the worker an apprentice at the time? + + + + + + * no: No + * apprentice_under_19: Apprentice under 19 + * apprentice_over_19: Apprentice aged 19 and over and in their first year + + + + + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.html deleted file mode 100644 index 53a2ca6efe8..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old was the worker at the time? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.txt new file mode 100644 index 00000000000..9714260dc6f --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.txt @@ -0,0 +1,12 @@ +How old was the worker at the time? + + + + + + + + +years old + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.html deleted file mode 100644 index b3783b1549a..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How often did you pay the worker? -

-
-
-

This is the pay period.

- - -
- -

You pay the worker every

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.txt new file mode 100644 index 00000000000..6845aa736c5 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.txt @@ -0,0 +1,13 @@ +How often did you pay the worker? + +This is the pay period. + + +You pay the worker every + + + + +days + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.html deleted file mode 100644 index 22f88b9bffd..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours did the worker work during the pay period? -

-
- -

Don’t include any overtime or other extra hours the worker worked.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.txt new file mode 100644 index 00000000000..dd182e45fa0 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.txt @@ -0,0 +1,12 @@ +How many hours did the worker work during the pay period? + + + +Don’t include any overtime or other extra hours the worker worked. + + + + +hours + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html deleted file mode 100644 index 6e868809e4e..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much did you charge for accommodation per day? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
How many hours did the worker work during the pay period? - 16.0
How much did you pay the worker in the pay period? - £100
How many hours of overtime did the worker work during the pay period? - 0.0
Did you provide accommodation? - Yes, the accommodation was charged for
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt new file mode 100644 index 00000000000..540eb81b7cd --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt @@ -0,0 +1,12 @@ +How much did you charge for accommodation per day? + + + + + + + + +per day + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html deleted file mode 100644 index ca884a315dd..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many days per week did the worker live in the accommodation? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
How many hours did the worker work during the pay period? - 16.0
How much did you pay the worker in the pay period? - £100
How many hours of overtime did the worker work during the pay period? - 0.0
Did you provide accommodation? - Yes, the accommodation was free
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt new file mode 100644 index 00000000000..0ff5044ceaf --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt @@ -0,0 +1,12 @@ +How many days per week did the worker live in the accommodation? + + + + + + + + +days per week + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html deleted file mode 100644 index 0cf84f4dfa0..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did you provide accommodation? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
How many hours did the worker work during the pay period? - 16.0
How much did you pay the worker in the pay period? - £100
How many hours of overtime did the worker work during the pay period? - 0.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt new file mode 100644 index 00000000000..0f4d8453074 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt @@ -0,0 +1,15 @@ +Did you provide accommodation? + + + + + + * no: No + * yes_free: Yes, the accommodation was free + * yes_charged: Yes, the accommodation was charged for + + + + + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html deleted file mode 100644 index f08044384ac..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much did you pay the worker for overtime per hour? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
How many hours did the worker work during the pay period? - 16.0
How much did you pay the worker in the pay period? - £100
How many hours of overtime did the worker work during the pay period? - 8.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt new file mode 100644 index 00000000000..9bb76d76bbb --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt @@ -0,0 +1,12 @@ +How much did you pay the worker for overtime per hour? + + + + + + + + +per hour + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.html deleted file mode 100644 index a469317114f..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many hours of overtime did the worker work during the pay period? -

-
- -

If they didn’t work overtime enter 0

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
How many hours did the worker work during the pay period? - 16.0
How much did you pay the worker in the pay period? - £100
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.txt new file mode 100644 index 00000000000..c1a31d66580 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.txt @@ -0,0 +1,12 @@ +How many hours of overtime did the worker work during the pay period? + + + +If they didn’t work overtime enter 0 + + + + +hours + + diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.html b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.html deleted file mode 100644 index bb3bac63938..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much did you pay the worker in the pay period? -

-
- -

Don’t include payments for overtime or anything extra to their pay, eg money for clothes or goods.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What would you like to check? - If you owe a worker past payments (before April 2016)
Which year would you like to check past payments for? - Oct 2015 - Mar 2016
Was the worker an apprentice at the time? - No
How old was the worker at the time? - 25
How often did you pay the worker? - 1
How many hours did the worker work during the pay period? - 16.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.txt new file mode 100644 index 00000000000..7857b7bd239 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.txt @@ -0,0 +1,12 @@ +How much did you pay the worker in the pay period? + + + +Don’t include payments for overtime or anything extra to their pay, eg money for clothes or goods. + + + + +in the pay period + + diff --git a/test/artefacts/minimum-wage-calculator-employers/y.html b/test/artefacts/minimum-wage-calculator-employers/y.html deleted file mode 100644 index 06c6be32313..00000000000 --- a/test/artefacts/minimum-wage-calculator-employers/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Minimum wage calculator for employers - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What would you like to check? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/minimum-wage-calculator-employers/y.txt b/test/artefacts/minimum-wage-calculator-employers/y.txt new file mode 100644 index 00000000000..86007dfd257 --- /dev/null +++ b/test/artefacts/minimum-wage-calculator-employers/y.txt @@ -0,0 +1,14 @@ +What would you like to check? + + + + + + * current_payment: If you’re paying a worker the National Minimum Wage or the National Living Wage + * past_payment: If you owe a worker past payments (before April 2016) + + + + + + diff --git a/test/artefacts/overseas-passports/afghanistan.html b/test/artefacts/overseas-passports/afghanistan.html deleted file mode 100644 index c31e3bbaee5..00000000000 --- a/test/artefacts/overseas-passports/afghanistan.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Overseas British passport applications - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you renewing, replacing or applying for a first passport? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/overseas-passports/afghanistan.txt b/test/artefacts/overseas-passports/afghanistan.txt new file mode 100644 index 00000000000..a3d95041511 --- /dev/null +++ b/test/artefacts/overseas-passports/afghanistan.txt @@ -0,0 +1,16 @@ +Are you renewing, replacing or applying for a first passport? + + + + + + * renewing_new: Renewing a red passport + * renewing_old: Renewing an old black or blue passport + * applying: Applying for a first passport + * replacing: Replacing a lost or stolen passport + + + + + + diff --git a/test/artefacts/overseas-passports/afghanistan/renewing_new.html b/test/artefacts/overseas-passports/afghanistan/renewing_new.html deleted file mode 100644 index 1c50a59ffda..00000000000 --- a/test/artefacts/overseas-passports/afghanistan/renewing_new.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Overseas British passport applications - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you need an adult or child passport? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/overseas-passports/afghanistan/renewing_new.txt b/test/artefacts/overseas-passports/afghanistan/renewing_new.txt new file mode 100644 index 00000000000..d7423dacf90 --- /dev/null +++ b/test/artefacts/overseas-passports/afghanistan/renewing_new.txt @@ -0,0 +1,14 @@ +Do you need an adult or child passport? + + + + + + * adult: Adult (aged 16 and over) + * child: Child (aged 15 or under) + + + + + + diff --git a/test/artefacts/overseas-passports/afghanistan/renewing_old/adult.html b/test/artefacts/overseas-passports/afghanistan/renewing_old/adult.html deleted file mode 100644 index 92d287b0da8..00000000000 --- a/test/artefacts/overseas-passports/afghanistan/renewing_old/adult.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - Overseas British passport applications - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country were you born in? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Which country or territory are you in? - Afghanistan
Are you renewing, replacing or applying for a first passport? - Renewing an old black or blue passport
Do you need an adult or child passport? - Adult (aged 16 and over)
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/overseas-passports/afghanistan/renewing_old/adult.txt b/test/artefacts/overseas-passports/afghanistan/renewing_old/adult.txt new file mode 100644 index 00000000000..d6b5b73857b --- /dev/null +++ b/test/artefacts/overseas-passports/afghanistan/renewing_old/adult.txt @@ -0,0 +1,239 @@ +Which country were you born in? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * united-kingdom: United Kingdom + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/overseas-passports/the-occupied-palestinian-territories.html b/test/artefacts/overseas-passports/the-occupied-palestinian-territories.html deleted file mode 100644 index 4d8fbaaeca7..00000000000 --- a/test/artefacts/overseas-passports/the-occupied-palestinian-territories.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Overseas British passport applications - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/overseas-passports/the-occupied-palestinian-territories.txt b/test/artefacts/overseas-passports/the-occupied-palestinian-territories.txt new file mode 100644 index 00000000000..c3968e97ad1 --- /dev/null +++ b/test/artefacts/overseas-passports/the-occupied-palestinian-territories.txt @@ -0,0 +1,14 @@ +Where are you? + + + + + + * gaza: Gaza + * jerusalem-or-westbank: Jerusalem and the West Bank + + + + + + diff --git a/test/artefacts/overseas-passports/y.html b/test/artefacts/overseas-passports/y.html deleted file mode 100644 index 33da836391b..00000000000 --- a/test/artefacts/overseas-passports/y.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - Overseas British passport applications - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country or territory are you in? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/overseas-passports/y.txt b/test/artefacts/overseas-passports/y.txt new file mode 100644 index 00000000000..0cd0fe2808f --- /dev/null +++ b/test/artefacts/overseas-passports/y.txt @@ -0,0 +1,238 @@ +Which country or territory are you in? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/y.html b/test/artefacts/pay-leave-for-parents/y.html deleted file mode 100644 index 236a6aa3f13..00000000000 --- a/test/artefacts/pay-leave-for-parents/y.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Will you care for the child with a partner? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - -

The partner must be one of the following:

- -
    -
  • your husband, wife, civil partner or joint adopter
  • -
  • the child’s other parent
  • -
  • your partner (if they live with you and the child)
  • -
- -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/y.txt b/test/artefacts/pay-leave-for-parents/y.txt new file mode 100644 index 00000000000..ebee79cac18 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/y.txt @@ -0,0 +1,19 @@ +Will you care for the child with a partner? + + + + + + * yes: Yes + * no: No + + + + + +The partner must be one of the following: + +- your husband, wife, civil partner or joint adopter +- the child’s other parent +- your partner (if they live with you and the child) + diff --git a/test/artefacts/pay-leave-for-parents/yes.html b/test/artefacts/pay-leave-for-parents/yes.html deleted file mode 100644 index 8a499ef11ac..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When is the baby due? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes.txt b/test/artefacts/pay-leave-for-parents/yes.txt new file mode 100644 index 00000000000..826d7466e37 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes.txt @@ -0,0 +1,12 @@ +When is the baby due? + + + + + + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01.html deleted file mode 100644 index 48a4612749d..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What’s the employment status of the mother? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - -

Read about employment statuses if you aren’t sure which one applies.

- -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01.txt new file mode 100644 index 00000000000..338fe87e06e --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01.txt @@ -0,0 +1,17 @@ +What’s the employment status of the mother? + + + + + + * employee: Employee + * worker: Worker or agency worker + * self-employed: Self-employed + * unemployed: Unemployed + + + + + +Read about [employment statuses](/employment-status) if you aren’t sure which one applies. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.html deleted file mode 100644 index 0b9a3d7786a..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What’s the employment status of the mother’s partner? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - -

Read about employment statuses if you aren’t sure which one applies.

- -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.txt new file mode 100644 index 00000000000..fa97e993871 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.txt @@ -0,0 +1,17 @@ +What’s the employment status of the mother’s partner? + + + + + + * employee: Employee + * worker: Worker or agency worker + * self-employed: Self-employed + * unemployed: Unemployed + + + + + +Read about [employment statuses](/employment-status) if you aren’t sure which one applies. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.html deleted file mode 100644 index df52202e8a6..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the mother start her current or most recent job before 30 April 2011? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.txt new file mode 100644 index 00000000000..f11394f070c --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.txt @@ -0,0 +1,14 @@ +Did the mother start her current or most recent job before 30 April 2011? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.html deleted file mode 100644 index 5b6abdc270c..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the mother (or will she be) still working in that job on 16 October 2011? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.txt new file mode 100644 index 00000000000..9ae0152c083 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.txt @@ -0,0 +1,14 @@ +Was the mother (or will she be) still working in that job on 16 October 2011? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.html deleted file mode 100644 index fc79e7262f7..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much does the mother earn (or did she earn, if she’s left her job)? -

-
- - -
- -
- - -
- - -

This is her total take-home pay before any deductions, eg tax.

- -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.txt new file mode 100644 index 00000000000..b5c292d005b --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.txt @@ -0,0 +1,13 @@ +How much does the mother earn (or did she earn, if she’s left her job)? + + + + + + + + + + +This is her total take-home pay before any deductions, eg tax. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.html deleted file mode 100644 index ee0805b113d..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.txt new file mode 100644 index 00000000000..d0635812483 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.txt @@ -0,0 +1,14 @@ +Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.html deleted file mode 100644 index 5becb691c2b..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the mother work (or will she have worked) for at least 26 weeks between 24 October 2010 and 28 January 2012? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - -

The 26 weeks don’t need to be in a row. They can be full or part weeks.

- -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.txt new file mode 100644 index 00000000000..0ce4ec799b6 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.txt @@ -0,0 +1,15 @@ +Did the mother work (or will she have worked) for at least 26 weeks between 24 October 2010 and 28 January 2012? + + + + + + * yes: Yes + * no: No + + + + + +The 26 weeks don’t need to be in a row. They can be full or part weeks. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.html deleted file mode 100644 index 22a6527be45..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the mother earn (or will she have earned) a total of £390 or more in any 13 weeks between 24 October 2010 and 28 January 2012? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - -

The 13 weeks don’t need to be in a row.

- -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - No
Did the mother work (or will she have worked) for at least 26 weeks between 24 October 2010 and 28 January 2012? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.txt new file mode 100644 index 00000000000..b0ee11ecaef --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.txt @@ -0,0 +1,15 @@ +Did the mother earn (or will she have earned) a total of £390 or more in any 13 weeks between 24 October 2010 and 28 January 2012? + + + + + + * yes: Yes + * no: No + + + + + +The 13 weeks don’t need to be in a row. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.html deleted file mode 100644 index 1df279302be..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much did the mother earn between 24 October 2010 and 28 January 2012? -

-
- - -
- -
- - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - No
Did the mother work (or will she have worked) for at least 26 weeks between 24 October 2010 and 28 January 2012? - Yes
Did the mother earn (or will she have earned) a total of £390 or more in any 13 weeks between 24 October 2010 and 28 January 2012? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.txt new file mode 100644 index 00000000000..312c025c96c --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.txt @@ -0,0 +1,12 @@ +How much did the mother earn between 24 October 2010 and 28 January 2012? + + + + + + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.html deleted file mode 100644 index 2631a334324..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the mother’s partner start their current or most recent job before 30 April 2011? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.txt new file mode 100644 index 00000000000..06ff9f9d1c0 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.txt @@ -0,0 +1,14 @@ +Did the mother’s partner start their current or most recent job before 30 April 2011? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.html deleted file mode 100644 index 5be4c62a372..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the mother’s partner (or will they be) still working in that job on 16 October 2011? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - Yes
Did the mother’s partner start their current or most recent job before 30 April 2011? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.txt new file mode 100644 index 00000000000..8a4575039a1 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.txt @@ -0,0 +1,14 @@ +Was the mother’s partner (or will they be) still working in that job on 16 October 2011? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.html deleted file mode 100644 index f431d30d093..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much does the mother’s partner earn (or did they earn, if they’ve left their job)? -

-
- - -
- -
- - -
- - -

This is their total take-home pay before any deductions, eg tax.

- -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - Yes
Did the mother’s partner start their current or most recent job before 30 April 2011? - Yes
Was the mother’s partner (or will they be) still working in that job on 16 October 2011? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.txt new file mode 100644 index 00000000000..8a5ef59f238 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.txt @@ -0,0 +1,13 @@ +How much does the mother’s partner earn (or did they earn, if they’ve left their job)? + + + + + + + + + + +This is their total take-home pay before any deductions, eg tax. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.html b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.html deleted file mode 100644 index 928310dbc3e..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Has the mother’s partner earned (or will they have earned) more than £112 per week between 27 August 2011 and 22 October 2011? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 1 February 2012
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 30 April 2011? - Yes
Was the mother (or will she be) still working in that job on 16 October 2011? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £112 per week between 27 August 2011 and 22 October 2011? - Yes
Did the mother’s partner start their current or most recent job before 30 April 2011? - Yes
Was the mother’s partner (or will they be) still working in that job on 16 October 2011? - Yes
How much does the mother’s partner earn (or did they earn, if they’ve left their job)? - £10,000 per year
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.txt b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.txt new file mode 100644 index 00000000000..778a70ea272 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.txt @@ -0,0 +1,14 @@ +Has the mother’s partner earned (or will they have earned) more than £112 per week between 27 August 2011 and 22 October 2011? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no.html b/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no.html deleted file mode 100644 index 1dbe2beae6a..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the mother’s partner work (or will they have worked) for at least 26 weeks between 29 December 2013 and 4 April 2015? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - -

The 26 weeks don’t need to be in a row. They can be full or part weeks.

- -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 5 April 2015
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 5 July 2014? - Yes
Was the mother (or will she be) still working in that job on 21 December 2014? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £111 per week between 1 November 2014 and 27 December 2014? - Yes
Did the mother’s partner start their current or most recent job before 5 July 2014? - Yes
Was the mother’s partner (or will they be) still working in that job on 21 December 2014? - Yes
How much does the mother’s partner earn (or did they earn, if they’ve left their job)? - £10,000 per year
Has the mother’s partner earned (or will they have earned) more than £111 per week between 1 November 2014 and 27 December 2014? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no.txt b/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no.txt new file mode 100644 index 00000000000..cb1ebbd9515 --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no.txt @@ -0,0 +1,15 @@ +Did the mother’s partner work (or will they have worked) for at least 26 weeks between 29 December 2013 and 4 April 2015? + + + + + + * yes: Yes + * no: No + + + + + +The 26 weeks don’t need to be in a row. They can be full or part weeks. + diff --git a/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no/yes.html b/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no/yes.html deleted file mode 100644 index f1f34b7d29b..00000000000 --- a/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no/yes.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - Calculate your leave and pay when you have a child - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the mother’s partner earn (or will they have earned) a total of £390 or more in any 13 weeks between 29 December 2013 and 4 April 2015? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - -

The 13 weeks don’t need to be in a row.

- -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Will you care for the child with a partner? - Yes
When is the baby due? - 5 April 2015
What’s the employment status of the mother? - Employee
What’s the employment status of the mother’s partner? - Employee
Did the mother start her current or most recent job before 5 July 2014? - Yes
Was the mother (or will she be) still working in that job on 21 December 2014? - Yes
How much does the mother earn (or did she earn, if she’s left her job)? - £10,000 per year
Has the mother earned (or will she have earned) more than £111 per week between 1 November 2014 and 27 December 2014? - Yes
Did the mother’s partner start their current or most recent job before 5 July 2014? - Yes
Was the mother’s partner (or will they be) still working in that job on 21 December 2014? - Yes
How much does the mother’s partner earn (or did they earn, if they’ve left their job)? - £10,000 per year
Has the mother’s partner earned (or will they have earned) more than £111 per week between 1 November 2014 and 27 December 2014? - No
Did the mother’s partner work (or will they have worked) for at least 26 weeks between 29 December 2013 and 4 April 2015? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no/yes.txt b/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no/yes.txt new file mode 100644 index 00000000000..a7fcaff086b --- /dev/null +++ b/test/artefacts/pay-leave-for-parents/yes/2015-04-05/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000.0-year/no/yes.txt @@ -0,0 +1,15 @@ +Did the mother’s partner earn (or will they have earned) a total of £390 or more in any 13 weeks between 29 December 2013 and 4 April 2015? + + + + + + * yes: Yes + * no: No + + + + + +The 13 weeks don’t need to be in a row. + diff --git a/test/artefacts/pip-checker/y.html b/test/artefacts/pip-checker/y.html deleted file mode 100644 index cb8e5e58911..00000000000 --- a/test/artefacts/pip-checker/y.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - Check how Personal Independence Payment (PIP) affects you - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you getting Disability Living Allowance? -

-
-
-

If you’re checking for someone else, answer on their behalf.

- -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pip-checker/y.txt b/test/artefacts/pip-checker/y.txt new file mode 100644 index 00000000000..d2eeaa8e8b2 --- /dev/null +++ b/test/artefacts/pip-checker/y.txt @@ -0,0 +1,15 @@ +Are you getting Disability Living Allowance? + +If you’re checking for someone else, answer on their behalf. + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/pip-checker/yes.html b/test/artefacts/pip-checker/yes.html deleted file mode 100644 index cc206c88829..00000000000 --- a/test/artefacts/pip-checker/yes.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - Check how Personal Independence Payment (PIP) affects you - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's your date of birth? -

-
- -

If you’re checking for someone else, enter their date of birth.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/pip-checker/yes.txt b/test/artefacts/pip-checker/yes.txt new file mode 100644 index 00000000000..885b551521f --- /dev/null +++ b/test/artefacts/pip-checker/yes.txt @@ -0,0 +1,12 @@ +What's your date of birth? + + + +If you’re checking for someone else, enter their date of birth. + + + + + + + diff --git a/test/artefacts/plan-adoption-leave/2015-01-01.html b/test/artefacts/plan-adoption-leave/2015-01-01.html deleted file mode 100644 index 81b971fb4ea..00000000000 --- a/test/artefacts/plan-adoption-leave/2015-01-01.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - Plan your adoption leave - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When will the child start to live with you? -

-
- -

This is sometimes known as the 'date of placement'.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/plan-adoption-leave/2015-01-01.txt b/test/artefacts/plan-adoption-leave/2015-01-01.txt new file mode 100644 index 00000000000..a486826a180 --- /dev/null +++ b/test/artefacts/plan-adoption-leave/2015-01-01.txt @@ -0,0 +1,12 @@ +When will the child start to live with you? + + + +This is sometimes known as the 'date of placement'. + + + + + + + diff --git a/test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.html b/test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.html deleted file mode 100644 index b19322b6606..00000000000 --- a/test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - Plan your adoption leave - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When do you want to start your adoption leave? -

-
- -

Leave can start up to 14 days before the child comes to live with you.

- -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.txt b/test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.txt new file mode 100644 index 00000000000..c4a196b8238 --- /dev/null +++ b/test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.txt @@ -0,0 +1,12 @@ +When do you want to start your adoption leave? + + + +Leave can start up to 14 days before the child comes to live with you. + + + + + + + diff --git a/test/artefacts/plan-adoption-leave/y.html b/test/artefacts/plan-adoption-leave/y.html deleted file mode 100644 index 0c68451c968..00000000000 --- a/test/artefacts/plan-adoption-leave/y.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Plan your adoption leave - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When were you matched with the child? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/plan-adoption-leave/y.txt b/test/artefacts/plan-adoption-leave/y.txt new file mode 100644 index 00000000000..161eceb9e62 --- /dev/null +++ b/test/artefacts/plan-adoption-leave/y.txt @@ -0,0 +1,12 @@ +When were you matched with the child? + + + + + + + + + + + diff --git a/test/artefacts/register-a-birth/afghanistan.html b/test/artefacts/register-a-birth/afghanistan.html deleted file mode 100644 index 3a57b6127b7..00000000000 --- a/test/artefacts/register-a-birth/afghanistan.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - Register a birth abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Who has British nationality? -

-
- - - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-birth/afghanistan.txt b/test/artefacts/register-a-birth/afghanistan.txt new file mode 100644 index 00000000000..e5597a296eb --- /dev/null +++ b/test/artefacts/register-a-birth/afghanistan.txt @@ -0,0 +1,17 @@ +Who has British nationality? + +If the British parent was born abroad, they may be a British citizen ‘by descent’. This means they may not be allowed to pass on their British nationality to a child also born abroad. [Check if the parent is a British citizen by descent](/check-british-citizen). + + + + + * mother: Mother only + * father: Father only + * mother_and_father: Mother and father + * neither: Neither + + + + + + diff --git a/test/artefacts/register-a-birth/afghanistan/father/no.html b/test/artefacts/register-a-birth/afghanistan/father/no.html deleted file mode 100644 index a31517a9315..00000000000 --- a/test/artefacts/register-a-birth/afghanistan/father/no.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - Register a birth abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your child’s date of birth? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-birth/afghanistan/father/no.txt b/test/artefacts/register-a-birth/afghanistan/father/no.txt new file mode 100644 index 00000000000..2e1979898d9 --- /dev/null +++ b/test/artefacts/register-a-birth/afghanistan/father/no.txt @@ -0,0 +1,12 @@ +What is your child’s date of birth? + + + + + + + + + + + diff --git a/test/artefacts/register-a-birth/afghanistan/mother.html b/test/artefacts/register-a-birth/afghanistan/mother.html deleted file mode 100644 index 0b13e946518..00000000000 --- a/test/artefacts/register-a-birth/afghanistan/mother.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Register a birth abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Were you married to the other parent when your child was born? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-birth/afghanistan/mother.txt b/test/artefacts/register-a-birth/afghanistan/mother.txt new file mode 100644 index 00000000000..5c63b859cd3 --- /dev/null +++ b/test/artefacts/register-a-birth/afghanistan/mother.txt @@ -0,0 +1,14 @@ +Were you married to the other parent when your child was born? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/register-a-birth/afghanistan/mother/yes.html b/test/artefacts/register-a-birth/afghanistan/mother/yes.html deleted file mode 100644 index 21ce03d6c84..00000000000 --- a/test/artefacts/register-a-birth/afghanistan/mother/yes.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - Register a birth abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where are you now? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-birth/afghanistan/mother/yes.txt b/test/artefacts/register-a-birth/afghanistan/mother/yes.txt new file mode 100644 index 00000000000..e727fcfae27 --- /dev/null +++ b/test/artefacts/register-a-birth/afghanistan/mother/yes.txt @@ -0,0 +1,15 @@ +Where are you now? + + + + + + * same_country: In the country where the child was born + * another_country: In another country + * in_the_uk: In the UK + + + + + + diff --git a/test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.html b/test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.html deleted file mode 100644 index d131a59d59c..00000000000 --- a/test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.html +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - Register a birth abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Which country was the child born in? - Afghanistan
Who has British nationality? - Mother only
Were you married to the other parent when your child was born? - Yes
Where are you now? - In another country
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.txt b/test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.txt new file mode 100644 index 00000000000..f2b69ba900c --- /dev/null +++ b/test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.txt @@ -0,0 +1,238 @@ +Which country? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/register-a-birth/y.html b/test/artefacts/register-a-birth/y.html deleted file mode 100644 index fac96e86298..00000000000 --- a/test/artefacts/register-a-birth/y.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - Register a birth abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country was the child born in? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-birth/y.txt b/test/artefacts/register-a-birth/y.txt new file mode 100644 index 00000000000..307813be0eb --- /dev/null +++ b/test/artefacts/register-a-birth/y.txt @@ -0,0 +1,238 @@ +Which country was the child born in? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/register-a-death/england_wales.html b/test/artefacts/register-a-death/england_wales.html deleted file mode 100644 index bd5c8ad26c4..00000000000 --- a/test/artefacts/register-a-death/england_wales.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Register a death - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did the person die at home, in hospital or elsewhere? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-death/england_wales.txt b/test/artefacts/register-a-death/england_wales.txt new file mode 100644 index 00000000000..a6e8741abfa --- /dev/null +++ b/test/artefacts/register-a-death/england_wales.txt @@ -0,0 +1,14 @@ +Did the person die at home, in hospital or elsewhere? + + + + + + * at_home_hospital: At home or in hospital + * elsewhere: Elsewhere + + + + + + diff --git a/test/artefacts/register-a-death/england_wales/at_home_hospital.html b/test/artefacts/register-a-death/england_wales/at_home_hospital.html deleted file mode 100644 index 1358220fc09..00000000000 --- a/test/artefacts/register-a-death/england_wales/at_home_hospital.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Register a death - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Was the death expected? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-death/england_wales/at_home_hospital.txt b/test/artefacts/register-a-death/england_wales/at_home_hospital.txt new file mode 100644 index 00000000000..927303abde6 --- /dev/null +++ b/test/artefacts/register-a-death/england_wales/at_home_hospital.txt @@ -0,0 +1,14 @@ +Was the death expected? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/register-a-death/overseas.html b/test/artefacts/register-a-death/overseas.html deleted file mode 100644 index 621f78c83f8..00000000000 --- a/test/artefacts/register-a-death/overseas.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - Register a death - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country did the death happen in? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-death/overseas.txt b/test/artefacts/register-a-death/overseas.txt new file mode 100644 index 00000000000..611c3d07acc --- /dev/null +++ b/test/artefacts/register-a-death/overseas.txt @@ -0,0 +1,238 @@ +Which country did the death happen in? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/register-a-death/overseas/north-korea.html b/test/artefacts/register-a-death/overseas/north-korea.html deleted file mode 100644 index 6f5c24b95c7..00000000000 --- a/test/artefacts/register-a-death/overseas/north-korea.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - Register a death - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where are you now? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-death/overseas/north-korea.txt b/test/artefacts/register-a-death/overseas/north-korea.txt new file mode 100644 index 00000000000..8fe562052cd --- /dev/null +++ b/test/artefacts/register-a-death/overseas/north-korea.txt @@ -0,0 +1,15 @@ +Where are you now? + + + + + + * same_country: In the country where the death happened + * another_country: In another country + * in_the_uk: In the UK + + + + + + diff --git a/test/artefacts/register-a-death/overseas/north-korea/another_country.html b/test/artefacts/register-a-death/overseas/north-korea/another_country.html deleted file mode 100644 index fc44d53796f..00000000000 --- a/test/artefacts/register-a-death/overseas/north-korea/another_country.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - Register a death - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country are you in now? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-death/overseas/north-korea/another_country.txt b/test/artefacts/register-a-death/overseas/north-korea/another_country.txt new file mode 100644 index 00000000000..937fe011bab --- /dev/null +++ b/test/artefacts/register-a-death/overseas/north-korea/another_country.txt @@ -0,0 +1,238 @@ +Which country are you in now? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/register-a-death/y.html b/test/artefacts/register-a-death/y.html deleted file mode 100644 index 28c8d5d57c4..00000000000 --- a/test/artefacts/register-a-death/y.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Register a death - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where did the death happen? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/register-a-death/y.txt b/test/artefacts/register-a-death/y.txt new file mode 100644 index 00000000000..df4f64c1799 --- /dev/null +++ b/test/artefacts/register-a-death/y.txt @@ -0,0 +1,16 @@ +Where did the death happen? + + + + + + * england_wales: England or Wales + * scotland: Scotland + * northern_ireland: Northern Ireland + * overseas: Abroad + + + + + + diff --git a/test/artefacts/report-a-lost-or-stolen-passport/abroad.html b/test/artefacts/report-a-lost-or-stolen-passport/abroad.html deleted file mode 100644 index 769477d81b7..00000000000 --- a/test/artefacts/report-a-lost-or-stolen-passport/abroad.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - Cancel a lost or stolen passport - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- In which country? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/report-a-lost-or-stolen-passport/abroad.txt b/test/artefacts/report-a-lost-or-stolen-passport/abroad.txt new file mode 100644 index 00000000000..cf1dd142423 --- /dev/null +++ b/test/artefacts/report-a-lost-or-stolen-passport/abroad.txt @@ -0,0 +1,238 @@ +In which country? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-guiana: French Guiana + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guadeloupe: Guadeloupe + * guatemala: Guatemala + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * martinique: Martinique + * mauritania: Mauritania + * mauritius: Mauritius + * mayotte: Mayotte + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * reunion: Reunion + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-maarten: St Maarten + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/report-a-lost-or-stolen-passport/y.html b/test/artefacts/report-a-lost-or-stolen-passport/y.html deleted file mode 100644 index 62f80996d7f..00000000000 --- a/test/artefacts/report-a-lost-or-stolen-passport/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Cancel a lost or stolen passport - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where was the passport lost or stolen? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/report-a-lost-or-stolen-passport/y.txt b/test/artefacts/report-a-lost-or-stolen-passport/y.txt new file mode 100644 index 00000000000..db0ea77206c --- /dev/null +++ b/test/artefacts/report-a-lost-or-stolen-passport/y.txt @@ -0,0 +1,14 @@ +Where was the passport lost or stolen? + + + + + + * in_the_uk: In the UK + * abroad: Abroad + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/y.html b/test/artefacts/simplified-expenses-checker/y.html deleted file mode 100644 index 7d47367de78..00000000000 --- a/test/artefacts/simplified-expenses-checker/y.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Have you claimed expenses for your current business before? -

-
- -

If you’re a new business you won’t have claimed expenses before.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/y.txt b/test/artefacts/simplified-expenses-checker/y.txt new file mode 100644 index 00000000000..54c7c9ac0ff --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/y.txt @@ -0,0 +1,14 @@ +Have you claimed expenses for your current business before? + + + +If you’re a new business you won’t have claimed expenses before. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes.html b/test/artefacts/simplified-expenses-checker/yes.html deleted file mode 100644 index 15fa2c42df9..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you have any of these expenses as part of your business? -

-
- -

If you don't have any of these expenses go to 'Next step'.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes.txt b/test/artefacts/simplified-expenses-checker/yes.txt new file mode 100644 index 00000000000..d7b6d85af36 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes.txt @@ -0,0 +1,16 @@ +Do you have any of these expenses as part of your business? + + + +If you don't have any of these expenses go to 'Next step'. + + * car_or_van: Car or van (business use) + * motorcycle: Motorcycle (business use) + * using_home_for_business: Working from home (the main purpose of the building is your home) + * live_on_business_premises: Living on your business premises (the main purpose of the building where you live is your business, eg a B&B, and you're likely to pay business rates instead of council tax) + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.html deleted file mode 100644 index 61d2521b3e0..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- On average, how many hours a month do you work or expect to work from home? -

-
- -

You have to work at least 25 hours per month from home to use simplified home expenses.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
  • Working from home (the main purpose of the building is your home)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
How much of your driving time do you expect to be for business use? - 35.0
How many miles do you expect to drive your car or van for business during the tax year? - 10,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.txt new file mode 100644 index 00000000000..bd8f58d6c95 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.txt @@ -0,0 +1,12 @@ +On average, how many hours a month do you work or expect to work from home? + + + +You have to work at least 25 hours per month from home to use simplified home expenses. + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.html deleted file mode 100644 index 7e189068800..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much of your home costs do you expect to claim as business expenses this tax year? -

-
- -

The business proportion of utility bills, eg gas and electricity. Don't include phone and internet bills.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
  • Working from home (the main purpose of the building is your home)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
How much of your driving time do you expect to be for business use? - 35.0
How many miles do you expect to drive your car or van for business during the tax year? - 10,000
On average, how many hours a month do you work or expect to work from home? - 26
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.txt new file mode 100644 index 00000000000..89d67168ce6 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.txt @@ -0,0 +1,12 @@ +How much of your home costs do you expect to claim as business expenses this tax year? + + + +The business proportion of utility bills, eg gas and electricity. Don't include phone and internet bills. + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van.html deleted file mode 100644 index 72cfd066c24..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van.txt new file mode 100644 index 00000000000..fb5c370fff1 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van.txt @@ -0,0 +1,14 @@ +Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/no.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van/no.html deleted file mode 100644 index 680231151ee..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van/no.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Have you claimed Capital Allowances for your existing car, van or motorcycle before? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/no.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van/no.txt new file mode 100644 index 00000000000..34ff355ad61 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van/no.txt @@ -0,0 +1,14 @@ +Have you claimed Capital Allowances for your existing car, van or motorcycle before? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.html deleted file mode 100644 index 312798ce0d0..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to claim as business expenses for running and maintaining your car, van or motorcycle over the tax year? -

-
- -

Only include the business proportion of costs for your main vehicle, eg fuel, servicing, repairs and insurance.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - No
Have you claimed Capital Allowances for your existing car, van or motorcycle before? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.txt new file mode 100644 index 00000000000..21fcff0522c --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.txt @@ -0,0 +1,12 @@ +How much do you expect to claim as business expenses for running and maintaining your car, van or motorcycle over the tax year? + + + +Only include the business proportion of costs for your main vehicle, eg fuel, servicing, repairs and insurance. + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.html deleted file mode 100644 index 90770859efc..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is the vehicle you're buying green, ie a low emission vehicle? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.txt new file mode 100644 index 00000000000..7d32a68bfe6 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.txt @@ -0,0 +1,14 @@ +Is the vehicle you're buying green, ie a low emission vehicle? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.html deleted file mode 100644 index ce6211d1ebf..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much is the car, van or motorcycle you’re buying? -

-
- -

Include VAT unless your business is VAT registered.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.txt new file mode 100644 index 00000000000..7af8dbc8c53 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.txt @@ -0,0 +1,12 @@ +How much is the car, van or motorcycle you’re buying? + + + +Include VAT unless your business is VAT registered. + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.html deleted file mode 100644 index c7d7cf70a43..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many miles do you expect to drive your car or van for business during the tax year? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
How much of your driving time do you expect to be for business use? - 35.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.txt new file mode 100644 index 00000000000..32ba0a17e09 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.txt @@ -0,0 +1,12 @@ +How many miles do you expect to drive your car or van for business during the tax year? + + + + + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.html b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.html deleted file mode 100644 index 2366a2061de..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much of your driving time do you expect to be for business use? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Car or van (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.txt b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.txt new file mode 100644 index 00000000000..d351a97f7d2 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.txt @@ -0,0 +1,12 @@ +How much of your driving time do you expect to be for business use? + + + + + + + + +% of the time + + diff --git a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.html b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.html deleted file mode 100644 index 0c312ae06d2..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much do you expect to deduct from your business expenses this tax year for your private use of the premises? -

-
- -

For example, a proportion of your maintenance, utility and insurance bills.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Living on your business premises (the main purpose of the building where you live is your business, eg a B&B, and you're likely to pay business rates instead of council tax)
  • -
  • Motorcycle (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
How much of your driving time do you expect to be for business use? - 35.0
How many miles do you expect to drive your motorcycle for business during the tax year? - 7,500
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.txt b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.txt new file mode 100644 index 00000000000..9fe380aeafc --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.txt @@ -0,0 +1,12 @@ +How much do you expect to deduct from your business expenses this tax year for your private use of the premises? + + + +For example, a proportion of your maintenance, utility and insurance bills. + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.html b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.html deleted file mode 100644 index 6d573a3787e..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many people normally live on the business premises? -

-
- -

Include children and non-paying guests. Don't include paying guests or anyone using the premises as part of your business. Give an average if there are more people at certain times of the year.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Living on your business premises (the main purpose of the building where you live is your business, eg a B&B, and you're likely to pay business rates instead of council tax)
  • -
  • Motorcycle (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
How much of your driving time do you expect to be for business use? - 35.0
How many miles do you expect to drive your motorcycle for business during the tax year? - 7,500
How much do you expect to deduct from your business expenses this tax year for your private use of the premises? - £789
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.txt b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.txt new file mode 100644 index 00000000000..4fd40230bb9 --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.txt @@ -0,0 +1,12 @@ +How many people normally live on the business premises? + + + +Include children and non-paying guests. Don't include paying guests or anyone using the premises as part of your business. Give an average if there are more people at certain times of the year. + + + + + + + diff --git a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.html b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.html deleted file mode 100644 index a910bdf25a2..00000000000 --- a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - Check if simplified expenses works for your business - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How many miles do you expect to drive your motorcycle for business during the tax year? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Have you claimed expenses for your current business before? - Yes
Do you have any of these expenses as part of your business?
    -
  • Living on your business premises (the main purpose of the building where you live is your business, eg a B&B, and you're likely to pay business rates instead of council tax)
  • -
  • Motorcycle (business use)
  • -
Are you buying a new car, van or motorcycle this tax year that you expect to use for your business? - Yes
Is the vehicle you're buying green, ie a low emission vehicle? - Yes
How much is the car, van or motorcycle you’re buying? - £35,000
How much of your driving time do you expect to be for business use? - 35.0
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.txt b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.txt new file mode 100644 index 00000000000..db57dad7f1a --- /dev/null +++ b/test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.txt @@ -0,0 +1,12 @@ +How many miles do you expect to drive your motorcycle for business during the tax year? + + + + + + + + + + + diff --git a/test/artefacts/state-pension-age/age.html b/test/artefacts/state-pension-age/age.html deleted file mode 100644 index 1f006e0f032..00000000000 --- a/test/artefacts/state-pension-age/age.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - Check your State Pension age - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your date of birth? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-age/age.txt b/test/artefacts/state-pension-age/age.txt new file mode 100644 index 00000000000..6e63468c3e9 --- /dev/null +++ b/test/artefacts/state-pension-age/age.txt @@ -0,0 +1,12 @@ +What is your date of birth? + + + + + + + + + + + diff --git a/test/artefacts/state-pension-age/age/1949-02-01.html b/test/artefacts/state-pension-age/age/1949-02-01.html deleted file mode 100644 index 216d7df3eed..00000000000 --- a/test/artefacts/state-pension-age/age/1949-02-01.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Check your State Pension age - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you a man or a woman? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-age/age/1949-02-01.txt b/test/artefacts/state-pension-age/age/1949-02-01.txt new file mode 100644 index 00000000000..179f92a8250 --- /dev/null +++ b/test/artefacts/state-pension-age/age/1949-02-01.txt @@ -0,0 +1,14 @@ +Are you a man or a woman? + + + + + + * male: Man + * female: Woman + + + + + + diff --git a/test/artefacts/state-pension-age/y.html b/test/artefacts/state-pension-age/y.html deleted file mode 100644 index 4f875ea1515..00000000000 --- a/test/artefacts/state-pension-age/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Check your State Pension age - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What would you like to calculate? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-age/y.txt b/test/artefacts/state-pension-age/y.txt new file mode 100644 index 00000000000..82cb464b3ec --- /dev/null +++ b/test/artefacts/state-pension-age/y.txt @@ -0,0 +1,14 @@ +What would you like to calculate? + + + + + + * age: State Pension age - including Pension Credit qualifying age + * bus_pass: Bus pass age - find out when you’ll get free bus travel + + + + + + diff --git a/test/artefacts/state-pension-through-partner/married.html b/test/artefacts/state-pension-through-partner/married.html deleted file mode 100644 index 17e4b6dadcb..00000000000 --- a/test/artefacts/state-pension-through-partner/married.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Your partner’s National Insurance record and your State Pension - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When will (or did) you reach state pension age? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-through-partner/married.txt b/test/artefacts/state-pension-through-partner/married.txt new file mode 100644 index 00000000000..a08c157107a --- /dev/null +++ b/test/artefacts/state-pension-through-partner/married.txt @@ -0,0 +1,14 @@ +When will (or did) you reach state pension age? + + + + + + * your_pension_age_before_specific_date: on or before 5 April 2016 + * your_pension_age_after_specific_date: on or after 6 April 2016 + + + + + + diff --git a/test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.html b/test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.html deleted file mode 100644 index eae621e5817..00000000000 --- a/test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Your partner’s National Insurance record and your State Pension - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
What is your marital status? - married or in a civil partnership
When will (or did) you reach state pension age? - on or after 6 April 2016
When will (or did) your spouse or civil partner reach state pension age? - on or before 5 April 2016
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.txt b/test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.txt new file mode 100644 index 00000000000..83230d14451 --- /dev/null +++ b/test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.txt @@ -0,0 +1,14 @@ +Are you: + + + + + + * male_gender: a man + * female_gender: a woman + + + + + + diff --git a/test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.html b/test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.html deleted file mode 100644 index 7b2a2c485b5..00000000000 --- a/test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Your partner’s National Insurance record and your State Pension - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When will (or did) your spouse or civil partner reach state pension age? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.txt b/test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.txt new file mode 100644 index 00000000000..95d729dce0c --- /dev/null +++ b/test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.txt @@ -0,0 +1,14 @@ +When will (or did) your spouse or civil partner reach state pension age? + + + + + + * partner_pension_age_before_specific_date: on or before 5 April 2016 + * partner_pension_age_after_specific_date: on or after 6 April 2016 + + + + + + diff --git a/test/artefacts/state-pension-through-partner/y.html b/test/artefacts/state-pension-through-partner/y.html deleted file mode 100644 index e4d43f782fd..00000000000 --- a/test/artefacts/state-pension-through-partner/y.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - Your partner’s National Insurance record and your State Pension - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your marital status? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-through-partner/y.txt b/test/artefacts/state-pension-through-partner/y.txt new file mode 100644 index 00000000000..90515746961 --- /dev/null +++ b/test/artefacts/state-pension-through-partner/y.txt @@ -0,0 +1,15 @@ +What is your marital status? + + + + + + * married: married or in a civil partnership + * widowed: widowed + * divorced: divorced or have dissolved your civil partnership + + + + + + diff --git a/test/artefacts/state-pension-topup/1912-10-12.html b/test/artefacts/state-pension-topup/1912-10-12.html deleted file mode 100644 index 26c473ea6a9..00000000000 --- a/test/artefacts/state-pension-topup/1912-10-12.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - State Pension top up calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your gender? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-topup/1912-10-12.txt b/test/artefacts/state-pension-topup/1912-10-12.txt new file mode 100644 index 00000000000..3118ca2d9ed --- /dev/null +++ b/test/artefacts/state-pension-topup/1912-10-12.txt @@ -0,0 +1,14 @@ +What is your gender? + + + + + + * male: Male + * female: Female + + + + + + diff --git a/test/artefacts/state-pension-topup/1912-10-12/male.html b/test/artefacts/state-pension-topup/1912-10-12/male.html deleted file mode 100644 index c9b7f6e7551..00000000000 --- a/test/artefacts/state-pension-topup/1912-10-12/male.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - State Pension top up calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much extra State Pension would you like to get per week? -

-
- -

Enter a number between 1 and 25.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-topup/1912-10-12/male.txt b/test/artefacts/state-pension-topup/1912-10-12/male.txt new file mode 100644 index 00000000000..29dd3b0b291 --- /dev/null +++ b/test/artefacts/state-pension-topup/1912-10-12/male.txt @@ -0,0 +1,12 @@ +How much extra State Pension would you like to get per week? + + + +Enter a number between 1 and 25. + + + + + + + diff --git a/test/artefacts/state-pension-topup/y.html b/test/artefacts/state-pension-topup/y.html deleted file mode 100644 index 32133491477..00000000000 --- a/test/artefacts/state-pension-topup/y.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - State Pension top up calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What is your date of birth? -

-
- - -
- -
- - - -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/state-pension-topup/y.txt b/test/artefacts/state-pension-topup/y.txt new file mode 100644 index 00000000000..6e63468c3e9 --- /dev/null +++ b/test/artefacts/state-pension-topup/y.txt @@ -0,0 +1,12 @@ +What is your date of birth? + + + + + + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016.html b/test/artefacts/student-finance-calculator/2015-2016.html deleted file mode 100644 index 8022426e867..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What type of student are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016.txt b/test/artefacts/student-finance-calculator/2015-2016.txt new file mode 100644 index 00000000000..5a27b44cca1 --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016.txt @@ -0,0 +1,16 @@ +What type of student are you? + + + + + + * uk-full-time: UK student full-time + * uk-part-time: UK student part-time + * eu-full-time: EU student full-time + * eu-part-time: EU student part-time + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time.html b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time.html deleted file mode 100644 index d06237309a8..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How much are your tuition fees per year? -

-
- -

The maximum is £9,000 for full-time students and £6,750 for part-time students.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time.txt b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time.txt new file mode 100644 index 00000000000..c72ec6f25b7 --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time.txt @@ -0,0 +1,12 @@ +How much are your tuition fees per year? + + + +The maximum is £9,000 for full-time students and £6,750 for part-time students. + + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.html b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.html deleted file mode 100644 index 0158d14daff..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What's your annual household income? -

-
- -

This is your parents’ or partner’s gross (pre-tax) income plus your own. It affects how much help you'll get with living costs.

- -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
When does your course start? - Between September 2015 and August 2016
What type of student are you? - UK student full-time
How much are your tuition fees per year? - £6,000
Where will you live while studying? - Living with parents
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.txt b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.txt new file mode 100644 index 00000000000..75c35e321a2 --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.txt @@ -0,0 +1,12 @@ +What's your annual household income? + + + +This is your parents’ or partner’s gross (pre-tax) income plus your own. It affects how much help you'll get with living costs. + + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.0/children-under-17,dependant-adult,has-disability,low-income.html b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.0/children-under-17,dependant-adult,has-disability,low-income.html deleted file mode 100644 index 474b1479b41..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.0/children-under-17,dependant-adult,has-disability,low-income.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you studying one of these courses? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
When does your course start? - Between September 2015 and August 2016
What type of student are you? - UK student full-time
How much are your tuition fees per year? - £6,000
Where will you live while studying? - Living with parents
What's your annual household income? - £100,000
Do any of the following apply? (you might get extra funding.)
    -
  • You’ve got children under 17
  • -
  • An adult depends on you financially
  • -
  • You have a disability, health condition or learning difficulty, eg dyslexia
  • -
  • You’re on low income, eg you find it hard to pay for basics like food and accommodation
  • -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.0/children-under-17,dependant-adult,has-disability,low-income.txt b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.0/children-under-17,dependant-adult,has-disability,low-income.txt new file mode 100644 index 00000000000..e6f54178d1f --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.0/children-under-17,dependant-adult,has-disability,low-income.txt @@ -0,0 +1,16 @@ +Are you studying one of these courses? + + + + + + * teacher-training: Teacher training + * dental-medical-healthcare: Dental, medical or healthcare + * social-work: Social work + * none-of-the-above: None of these + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.html b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.html deleted file mode 100644 index 1b61183be3a..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do any of the following apply? (you might get extra funding.) -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
When does your course start? - Between September 2015 and August 2016
What type of student are you? - UK student full-time
How much are your tuition fees per year? - £6,000
Where will you live while studying? - Living with parents
What's your annual household income? - £100,000
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.txt b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.txt new file mode 100644 index 00000000000..71ffbb4ef3f --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.txt @@ -0,0 +1,17 @@ +Do any of the following apply? (you might get extra funding.) + + + + + + * children-under-17: You’ve got children under 17 + * dependant-adult: An adult depends on you financially + * has-disability: You have a disability, health condition or learning difficulty, eg dyslexia + * low-income: You’re on low income, eg you find it hard to pay for basics like food and accommodation + * no: None of these + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.html b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.html deleted file mode 100644 index 5332b3f67b4..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Where will you live while studying? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.txt b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.txt new file mode 100644 index 00000000000..7f298c70647 --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.txt @@ -0,0 +1,15 @@ +Where will you live while studying? + + + + + + * at-home: Living with parents + * away-outside-london: Not living with parents and studying outside of London + * away-in-london: Not living with parents and studying in London + + + + + + diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.html b/test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.html deleted file mode 100644 index 4d0562b018b..00000000000 --- a/test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do any of the following apply (you might get extra funding)? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.txt b/test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.txt new file mode 100644 index 00000000000..15fe352959d --- /dev/null +++ b/test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.txt @@ -0,0 +1,15 @@ +Do any of the following apply (you might get extra funding)? + + + + + + * has-disability: You have a disability, health condition or learning difficulty, eg dyslexia + * low-income: You’re on a low income, eg you find it hard to pay for food and accommodation + * no: None of these + + + + + + diff --git a/test/artefacts/student-finance-calculator/y.html b/test/artefacts/student-finance-calculator/y.html deleted file mode 100644 index 2ddaf80e4cd..00000000000 --- a/test/artefacts/student-finance-calculator/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Student finance calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When does your course start? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-calculator/y.txt b/test/artefacts/student-finance-calculator/y.txt new file mode 100644 index 00000000000..70ab59849cf --- /dev/null +++ b/test/artefacts/student-finance-calculator/y.txt @@ -0,0 +1,14 @@ +When does your course start? + + + + + + * 2015-2016: Between September 2015 and August 2016 + * 2016-2017: Between September 2016 and August 2017 + + + + + + diff --git a/test/artefacts/student-finance-forms/uk-full-time.html b/test/artefacts/student-finance-forms/uk-full-time.html deleted file mode 100644 index b18fa49b2e7..00000000000 --- a/test/artefacts/student-finance-forms/uk-full-time.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What do you need the form for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/uk-full-time.txt b/test/artefacts/student-finance-forms/uk-full-time.txt new file mode 100644 index 00000000000..d83049ee82f --- /dev/null +++ b/test/artefacts/student-finance-forms/uk-full-time.txt @@ -0,0 +1,20 @@ +What do you need the form for? + + + + + + * apply-loans-grants: Apply for student loans and grants + * proof-identity: Send proof of identity + * income-details: Send parent or partner’s income detail - eg PFF2 or CYI + * apply-dsa: Apply for Disabled Students’ Allowances + * dsa-expenses: Claim Disabled Students’ Allowances expenses + * apply-ccg: Apply for Childcare Grant + * ccg-expenses: Childcare Grant costs confirmation + * travel-grant: Travel Grant + + + + + + diff --git a/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.html b/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.html deleted file mode 100644 index cebfafa70e5..00000000000 --- a/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What academic year do you want funding for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.txt b/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.txt new file mode 100644 index 00000000000..5858d01e247 --- /dev/null +++ b/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.txt @@ -0,0 +1,14 @@ +What academic year do you want funding for? + + + + + + * year-1617: 2016 to 2017 + * year-1516: 2015 to 2016 + + + + + + diff --git a/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.html b/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.html deleted file mode 100644 index dd30c394cc1..00000000000 --- a/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you a continuing student? -

-
- -

You’re usually a continuing student if you got student finance last year.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.txt b/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.txt new file mode 100644 index 00000000000..bce9c1f753f --- /dev/null +++ b/test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.txt @@ -0,0 +1,14 @@ +Are you a continuing student? + + + +You’re usually a continuing student if you got student finance last year. + + * continuing-student: Yes + * new-student: No + + + + + + diff --git a/test/artefacts/student-finance-forms/uk-part-time.html b/test/artefacts/student-finance-forms/uk-part-time.html deleted file mode 100644 index 142cdf1e94b..00000000000 --- a/test/artefacts/student-finance-forms/uk-part-time.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What do you need the form for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/uk-part-time.txt b/test/artefacts/student-finance-forms/uk-part-time.txt new file mode 100644 index 00000000000..82f145393a5 --- /dev/null +++ b/test/artefacts/student-finance-forms/uk-part-time.txt @@ -0,0 +1,16 @@ +What do you need the form for? + + + + + + * apply-loans-grants: Apply for student loans and grants + * proof-identity: Send proof of identity + * apply-dsa: Apply for Disabled Students’ Allowances + * dsa-expenses: Claim Disabled Students’ Allowances expenses + + + + + + diff --git a/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.html b/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.html deleted file mode 100644 index 68b536e7129..00000000000 --- a/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What academic year do you want funding for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.txt b/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.txt new file mode 100644 index 00000000000..5858d01e247 --- /dev/null +++ b/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.txt @@ -0,0 +1,14 @@ +What academic year do you want funding for? + + + + + + * year-1617: 2016 to 2017 + * year-1516: 2015 to 2016 + + + + + + diff --git a/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.html b/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.html deleted file mode 100644 index 640c4ecc864..00000000000 --- a/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did your part-time course start before 1 September 2012? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What type of a student are you? - English student - part-time
What do you need the form for? - Apply for student loans and grants
What academic year do you want funding for? - 2016 to 2017
Are you a continuing student? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.txt b/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.txt new file mode 100644 index 00000000000..c49724945c3 --- /dev/null +++ b/test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.txt @@ -0,0 +1,14 @@ +Did your part-time course start before 1 September 2012? + + + + + + * course-start-before-01092012: Yes + * course-start-after-01092012: No + + + + + + diff --git a/test/artefacts/student-finance-forms/y.html b/test/artefacts/student-finance-forms/y.html deleted file mode 100644 index 754c6a51d76..00000000000 --- a/test/artefacts/student-finance-forms/y.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - Student finance forms - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What type of a student are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/student-finance-forms/y.txt b/test/artefacts/student-finance-forms/y.txt new file mode 100644 index 00000000000..5609e9ed68a --- /dev/null +++ b/test/artefacts/student-finance-forms/y.txt @@ -0,0 +1,16 @@ +What type of a student are you? + + + + + + * uk-full-time: English student - full-time + * uk-part-time: English student - part-time + * eu-full-time: EU student - full-time + * eu-part-time: EU student - part-time + + + + + + diff --git a/test/artefacts/towing-rules/bus.html b/test/artefacts/towing-rules/bus.html deleted file mode 100644 index b43ae3d28a8..00000000000 --- a/test/artefacts/towing-rules/bus.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you already have a full category D bus licence? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/bus.txt b/test/artefacts/towing-rules/bus.txt new file mode 100644 index 00000000000..5ff8fe7bf5b --- /dev/null +++ b/test/artefacts/towing-rules/bus.txt @@ -0,0 +1,14 @@ +Do you already have a full category D bus licence? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/bus/no.html b/test/artefacts/towing-rules/bus/no.html deleted file mode 100644 index d5413ff55ad..00000000000 --- a/test/artefacts/towing-rules/bus/no.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/bus/no.txt b/test/artefacts/towing-rules/bus/no.txt new file mode 100644 index 00000000000..5350ca126bf --- /dev/null +++ b/test/artefacts/towing-rules/bus/no.txt @@ -0,0 +1,14 @@ +How old are you? + + + + + + * under-21: Under 21 + * 21-or-over: 21 or over + + + + + + diff --git a/test/artefacts/towing-rules/car-or-light-vehicle.html b/test/artefacts/towing-rules/car-or-light-vehicle.html deleted file mode 100644 index 303c02829bf..00000000000 --- a/test/artefacts/towing-rules/car-or-light-vehicle.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you already have a driving licence with any of the following entitlements on it: -

-
-
-
    -
  • C1+E (towing with a medium sized vehicle)
  • -
  • C+E (towing with a large vehicle)
  • -
  • D1+E (towing with a minibus)
  • -
  • D+E (towing with a bus)
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/car-or-light-vehicle.txt b/test/artefacts/towing-rules/car-or-light-vehicle.txt new file mode 100644 index 00000000000..2ef4d55d566 --- /dev/null +++ b/test/artefacts/towing-rules/car-or-light-vehicle.txt @@ -0,0 +1,18 @@ +Do you already have a driving licence with any of the following entitlements on it: + +- C1+E (towing with a medium sized vehicle) +- C+E (towing with a large vehicle) +- D1+E (towing with a minibus) +- D+E (towing with a bus) + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/car-or-light-vehicle/no.html b/test/artefacts/towing-rules/car-or-light-vehicle/no.html deleted file mode 100644 index fb7fb97723b..00000000000 --- a/test/artefacts/towing-rules/car-or-light-vehicle/no.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When did you pass your car driving test? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/car-or-light-vehicle/no.txt b/test/artefacts/towing-rules/car-or-light-vehicle/no.txt new file mode 100644 index 00000000000..4a12f660bc1 --- /dev/null +++ b/test/artefacts/towing-rules/car-or-light-vehicle/no.txt @@ -0,0 +1,14 @@ +When did you pass your car driving test? + + + + + + * licence-issued-before-19-Jan-2013: Before 19 January 2013 + * licence-issued-after-19-Jan-2013: From 19 January 2013 + + + + + + diff --git a/test/artefacts/towing-rules/car-or-light-vehicle/yes.html b/test/artefacts/towing-rules/car-or-light-vehicle/yes.html deleted file mode 100644 index 91126362aef..00000000000 --- a/test/artefacts/towing-rules/car-or-light-vehicle/yes.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When did you get this entitlement on your licence? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/car-or-light-vehicle/yes.txt b/test/artefacts/towing-rules/car-or-light-vehicle/yes.txt new file mode 100644 index 00000000000..94589d3cc77 --- /dev/null +++ b/test/artefacts/towing-rules/car-or-light-vehicle/yes.txt @@ -0,0 +1,14 @@ +When did you get this entitlement on your licence? + + + + + + * before-19-Jan-2013: Before 19 January 2013 + * after-19-Jan-2013: From 19 January 2013 + + + + + + diff --git a/test/artefacts/towing-rules/large-vehicle.html b/test/artefacts/towing-rules/large-vehicle.html deleted file mode 100644 index 45c4da62499..00000000000 --- a/test/artefacts/towing-rules/large-vehicle.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you already have a category C large vehicle licence? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/large-vehicle.txt b/test/artefacts/towing-rules/large-vehicle.txt new file mode 100644 index 00000000000..e3e24dca040 --- /dev/null +++ b/test/artefacts/towing-rules/large-vehicle.txt @@ -0,0 +1,14 @@ +Do you already have a category C large vehicle licence? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/large-vehicle/no.html b/test/artefacts/towing-rules/large-vehicle/no.html deleted file mode 100644 index e3df7002351..00000000000 --- a/test/artefacts/towing-rules/large-vehicle/no.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/large-vehicle/no.txt b/test/artefacts/towing-rules/large-vehicle/no.txt new file mode 100644 index 00000000000..5350ca126bf --- /dev/null +++ b/test/artefacts/towing-rules/large-vehicle/no.txt @@ -0,0 +1,14 @@ +How old are you? + + + + + + * under-21: Under 21 + * 21-or-over: 21 or over + + + + + + diff --git a/test/artefacts/towing-rules/medium-sized-vehicle.html b/test/artefacts/towing-rules/medium-sized-vehicle.html deleted file mode 100644 index cd38504ad8e..00000000000 --- a/test/artefacts/towing-rules/medium-sized-vehicle.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you already have a C1 medium-sized vehicle licence? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/medium-sized-vehicle.txt b/test/artefacts/towing-rules/medium-sized-vehicle.txt new file mode 100644 index 00000000000..df15abdd788 --- /dev/null +++ b/test/artefacts/towing-rules/medium-sized-vehicle.txt @@ -0,0 +1,14 @@ +Do you already have a C1 medium-sized vehicle licence? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/no.html b/test/artefacts/towing-rules/medium-sized-vehicle/no.html deleted file mode 100644 index e1575e565a0..00000000000 --- a/test/artefacts/towing-rules/medium-sized-vehicle/no.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you already have a driving licence with the C+E towing with a large vehicle entitlement on it? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/no.txt b/test/artefacts/towing-rules/medium-sized-vehicle/no.txt new file mode 100644 index 00000000000..09862160ed6 --- /dev/null +++ b/test/artefacts/towing-rules/medium-sized-vehicle/no.txt @@ -0,0 +1,14 @@ +Do you already have a driving licence with the C+E towing with a large vehicle entitlement on it? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/no/no.html b/test/artefacts/towing-rules/medium-sized-vehicle/no/no.html deleted file mode 100644 index f7da7055178..00000000000 --- a/test/artefacts/towing-rules/medium-sized-vehicle/no/no.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When was your driving licence issued? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
What kind of vehicle do you want to tow with? - Medium-sized vehicle (category C1)
Do you already have a C1 medium-sized vehicle licence? - No
Do you already have a driving licence with the C+E towing with a large vehicle entitlement on it? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/no/no.txt b/test/artefacts/towing-rules/medium-sized-vehicle/no/no.txt new file mode 100644 index 00000000000..2eb5b43bc27 --- /dev/null +++ b/test/artefacts/towing-rules/medium-sized-vehicle/no/no.txt @@ -0,0 +1,14 @@ +When was your driving licence issued? + + + + + + * before-jan-1997: Before 1 January 1997 + * from-jan-1997: From 1 January 1997 + + + + + + diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.html b/test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.html deleted file mode 100644 index 55cb833c526..00000000000 --- a/test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What kind of vehicle do you want to tow with? - Medium-sized vehicle (category C1)
Do you already have a C1 medium-sized vehicle licence? - No
Do you already have a driving licence with the C+E towing with a large vehicle entitlement on it? - No
When was your driving licence issued? - From 1 January 1997
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.txt b/test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.txt new file mode 100644 index 00000000000..9a9ae945d6c --- /dev/null +++ b/test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.txt @@ -0,0 +1,15 @@ +How old are you? + + + + + + * under-18: Under 18 + * under-21: 18 to 20 + * 21-or-over: 21 or over + + + + + + diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/yes.html b/test/artefacts/towing-rules/medium-sized-vehicle/yes.html deleted file mode 100644 index f43370be9c2..00000000000 --- a/test/artefacts/towing-rules/medium-sized-vehicle/yes.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/medium-sized-vehicle/yes.txt b/test/artefacts/towing-rules/medium-sized-vehicle/yes.txt new file mode 100644 index 00000000000..5350ca126bf --- /dev/null +++ b/test/artefacts/towing-rules/medium-sized-vehicle/yes.txt @@ -0,0 +1,14 @@ +How old are you? + + + + + + * under-21: Under 21 + * 21-or-over: 21 or over + + + + + + diff --git a/test/artefacts/towing-rules/minibus.html b/test/artefacts/towing-rules/minibus.html deleted file mode 100644 index fd6f1afed17..00000000000 --- a/test/artefacts/towing-rules/minibus.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Did you pass your test before 1 January 1997? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/minibus.txt b/test/artefacts/towing-rules/minibus.txt new file mode 100644 index 00000000000..c113344b5af --- /dev/null +++ b/test/artefacts/towing-rules/minibus.txt @@ -0,0 +1,14 @@ +Did you pass your test before 1 January 1997? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/minibus/no.html b/test/artefacts/towing-rules/minibus/no.html deleted file mode 100644 index 171d38fa98d..00000000000 --- a/test/artefacts/towing-rules/minibus/no.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you have a full category D+E towing with a bus licence? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/minibus/no.txt b/test/artefacts/towing-rules/minibus/no.txt new file mode 100644 index 00000000000..c7473d79ab5 --- /dev/null +++ b/test/artefacts/towing-rules/minibus/no.txt @@ -0,0 +1,14 @@ +Do you have a full category D+E towing with a bus licence? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/minibus/no/no.html b/test/artefacts/towing-rules/minibus/no/no.html deleted file mode 100644 index 385def41b65..00000000000 --- a/test/artefacts/towing-rules/minibus/no/no.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you have a full category D1 minibus licence? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - -
What kind of vehicle do you want to tow with? - Minibus (category D1)
Did you pass your test before 1 January 1997? - No
Do you have a full category D+E towing with a bus licence? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/minibus/no/no.txt b/test/artefacts/towing-rules/minibus/no/no.txt new file mode 100644 index 00000000000..3b9f9df5275 --- /dev/null +++ b/test/artefacts/towing-rules/minibus/no/no.txt @@ -0,0 +1,14 @@ +Do you have a full category D1 minibus licence? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/towing-rules/minibus/no/no/no.html b/test/artefacts/towing-rules/minibus/no/no/no.html deleted file mode 100644 index 2a28594799a..00000000000 --- a/test/artefacts/towing-rules/minibus/no/no/no.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How old are you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
What kind of vehicle do you want to tow with? - Minibus (category D1)
Did you pass your test before 1 January 1997? - No
Do you have a full category D+E towing with a bus licence? - No
Do you have a full category D1 minibus licence? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/minibus/no/no/no.txt b/test/artefacts/towing-rules/minibus/no/no/no.txt new file mode 100644 index 00000000000..5350ca126bf --- /dev/null +++ b/test/artefacts/towing-rules/minibus/no/no/no.txt @@ -0,0 +1,14 @@ +How old are you? + + + + + + * under-21: Under 21 + * 21-or-over: 21 or over + + + + + + diff --git a/test/artefacts/towing-rules/y.html b/test/artefacts/towing-rules/y.html deleted file mode 100644 index a045cdd15f6..00000000000 --- a/test/artefacts/towing-rules/y.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - Towing: licence and age requirements - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- What kind of vehicle do you want to tow with? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/towing-rules/y.txt b/test/artefacts/towing-rules/y.txt new file mode 100644 index 00000000000..e5e5bdb2afa --- /dev/null +++ b/test/artefacts/towing-rules/y.txt @@ -0,0 +1,17 @@ +What kind of vehicle do you want to tow with? + + + + + + * car-or-light-vehicle: Car (category B) + * medium-sized-vehicle: Medium-sized vehicle (category C1) + * large-vehicle: Large vehicle (category C) + * minibus: Minibus (category D1) + * bus: Bus (category D) + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad.html b/test/artefacts/uk-benefits-abroad/going_abroad.html deleted file mode 100644 index 7e6e365b30e..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which benefit will you be claiming? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad.txt b/test/artefacts/uk-benefits-abroad/going_abroad.txt new file mode 100644 index 00000000000..5da9c55b890 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad.txt @@ -0,0 +1,24 @@ +Which benefit will you be claiming? + + + + + + * jsa: Jobseeker's Allowance (JSA) + * pension: State Pension + * winter_fuel_payment: Winter Fuel Payment + * maternity_benefits: Maternity benefits + * child_benefit: Child Benefit + * iidb: Industrial Injuries Disablement Benefit + * ssp: Statutory Sick Pay (SSP) + * esa: Employment and Support Allowance (ESA) + * disability_benefits: Benefits for carers and people with disabilities + * bereavement_benefits: Bereavement benefits + * tax_credits: Tax credits + * income_support: Income Support + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.html b/test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.html deleted file mode 100644 index 0a18cb4d76d..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Does the following apply to you? -

-
-
-

You’re currently receiving at least one of the following UK benefits:

- -
    -
  • Bereavement benefits
  • -
  • Severe Disablement Allowance
  • -
  • Employment and Support Allowance
  • -
  • Incapacity Benefit
  • -
  • Industrial Injuries Disablement Benefit
  • -
  • State Pension
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.txt b/test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.txt new file mode 100644 index 00000000000..489a4d8354a --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.txt @@ -0,0 +1,22 @@ +Does the following apply to you? + +You're currently receiving at least one of the following UK benefits: + +- Bereavement benefits +- Severe Disablement Allowance +- Employment and Support Allowance +- Incapacity Benefit +- Industrial Injuries Disablement Benefit +- State Pension + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.html b/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.html deleted file mode 100644 index 94fbb909a51..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How long will you be abroad for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.txt b/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.txt new file mode 100644 index 00000000000..d0c14915eef --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.txt @@ -0,0 +1,14 @@ +How long will you be abroad for? + + + + + + * temporary: Temporarily, eg for a holiday + * permanent: Permanently + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.html b/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.html deleted file mode 100644 index d8d81482495..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you or a family member getting State Pension, Industrial Injuries Benefit, ESA (contributory) or bereavement benefits? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Benefits for carers and people with disabilities
How long will you be abroad for? - Permanently
Which country are you moving to? - Austria
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.txt b/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.txt new file mode 100644 index 00000000000..9880ed1f494 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.txt @@ -0,0 +1,14 @@ +Are you or a family member getting State Pension, Industrial Injuries Benefit, ESA (contributory) or bereavement benefits? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/esa.html b/test/artefacts/uk-benefits-abroad/going_abroad/esa.html deleted file mode 100644 index 1a21bc546e3..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/esa.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How long are you going abroad for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/esa.txt b/test/artefacts/uk-benefits-abroad/going_abroad/esa.txt new file mode 100644 index 00000000000..2e1e3a87192 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/esa.txt @@ -0,0 +1,15 @@ +How long are you going abroad for? + + + + + + * esa_under_a_year_medical: Less than 1 year, to get medical treatment for yourself or your child + * esa_under_a_year_other: Less than 1 year, for a different reason + * esa_more_than_a_year: More than 1 year + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/iidb.html b/test/artefacts/uk-benefits-abroad/going_abroad/iidb.html deleted file mode 100644 index 6f3a48bffe3..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/iidb.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you currently receiving Industrial Injuries Disablement Benefit? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/iidb.txt b/test/artefacts/uk-benefits-abroad/going_abroad/iidb.txt new file mode 100644 index 00000000000..5ebee06b5fe --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/iidb.txt @@ -0,0 +1,14 @@ +Are you currently receiving Industrial Injuries Disablement Benefit? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support.html b/test/artefacts/uk-benefits-abroad/going_abroad/income_support.html deleted file mode 100644 index 00209f8fa4d..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/income_support.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How long are you going abroad for? -

-
- -

You can't apply for Income Support from abroad.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support.txt b/test/artefacts/uk-benefits-abroad/going_abroad/income_support.txt new file mode 100644 index 00000000000..d98f05e2970 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/income_support.txt @@ -0,0 +1,15 @@ +How long are you going abroad for? + + + +You can't apply for Income Support from abroad. + + * is_under_a_year_medical: Less than 1 year, to get medical treatment for you or your child + * is_under_a_year_other: Less than 1 year, for a different reason + * is_more_than_a_year: More than 1 year + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.html b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.html deleted file mode 100644 index bc67e2cafe1..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you travelling abroad with a partner who is getting Income Support with one of the following: -

-
- - -

Your partner must be getting the premium, not you.

- -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.txt b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.txt new file mode 100644 index 00000000000..767a9e37aa3 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.txt @@ -0,0 +1,18 @@ +Are you travelling abroad with a partner who is getting Income Support with one of the following: + +- [Pensioner premium](/income-support/what-youll-get) +- [Higher Pensioner premium](/income-support/what-youll-get) +- [Disability premium](/disability-premiums-income-support/eligibility) +- [Severe Disability premium](/disability-premiums-income-support/eligibility) + + +Your partner must be getting the premium, not you. + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.html b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.html deleted file mode 100644 index 26dafc73482..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you getting Income Support while either: -

-
-
-
    -
  • getting Statutory Sick Pay
  • -
  • incapable of work, but being treated as capable of work because you are temporarily disqualified from receiving Income Support
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Income Support
How long are you going abroad for? - Less than 1 year, for a different reason
Are you travelling abroad with a partner who is getting Income Support with one of the following: - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.txt b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.txt new file mode 100644 index 00000000000..5c37b0875d1 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.txt @@ -0,0 +1,16 @@ +Are you getting Income Support while either: + +- getting [Statutory Sick Pay](/statutory-sick-pay/) +- incapable of work, but being treated as capable of work because you are temporarily disqualified from receiving Income Support + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.html b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.html deleted file mode 100644 index 1d1b8e87ee8..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you one of the following: -

-
-
-
    -
  • affected by a trades dispute (eg on strike)
  • -
  • age 16 to 19 and in full-time secondary education
  • -
  • appealing against a decision about your ability to work
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Income Support
How long are you going abroad for? - Less than 1 year, for a different reason
Are you travelling abroad with a partner who is getting Income Support with one of the following: - No
Are you getting Income Support while either: - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.txt b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.txt new file mode 100644 index 00000000000..1db7eb6449c --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.txt @@ -0,0 +1,17 @@ +Are you one of the following: + +- affected by a trades dispute (eg on strike) +- age 16 to 19 and in full-time secondary education +- appealing against a decision about your ability to work + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.html b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.html deleted file mode 100644 index d6ced9d343d..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you going abroad to get medical treatment for the illness or disability that prevents you from working? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Income Support
How long are you going abroad for? - Less than 1 year, for a different reason
Are you travelling abroad with a partner who is getting Income Support with one of the following: - No
Are you getting Income Support while either: - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.txt b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.txt new file mode 100644 index 00000000000..73c3a987aa6 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.txt @@ -0,0 +1,14 @@ +Are you going abroad to get medical treatment for the illness or disability that prevents you from working? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.html b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.html deleted file mode 100644 index a5faaafa261..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Have you been unable to work or received Statutory Sick Pay for one of the following: -

-
-
-
    -
  • 364 days
  • -
  • 196 days if you’re terminally ill, or getting the highest rate of Disability Living Allowance (care component) or the enhanced rate of Personal Independence Payment (daily living component)
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Income Support
How long are you going abroad for? - Less than 1 year, for a different reason
Are you travelling abroad with a partner who is getting Income Support with one of the following: - No
Are you getting Income Support while either: - Yes
Are you going abroad to get medical treatment for the illness or disability that prevents you from working? - No
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.txt b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.txt new file mode 100644 index 00000000000..f2aec9c7153 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.txt @@ -0,0 +1,16 @@ +Have you been unable to work or received Statutory Sick Pay for one of the following: + +- 364 days +- 196 days if you're terminally ill, or getting the highest rate of Disability Living Allowance (care component) or the enhanced rate of Personal Independence Payment (daily living component) + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/jsa.html b/test/artefacts/uk-benefits-abroad/going_abroad/jsa.html deleted file mode 100644 index 17c57dfa972..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/jsa.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- If you're claiming JSA, how long are you going abroad for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/jsa.txt b/test/artefacts/uk-benefits-abroad/going_abroad/jsa.txt new file mode 100644 index 00000000000..e1bf9a035d9 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/jsa.txt @@ -0,0 +1,16 @@ +If you're claiming JSA, how long are you going abroad for? + +*[JSA]: Jobseeker's Allowance + + + + + * less_than_a_year_medical: Less than 1 year, to get medical treatment for yourself or your child + * less_than_a_year_other: Less than 1 year, for a different reason + * more_than_a_year: More than 1 year + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.html b/test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.html deleted file mode 100644 index 1daafd40d2a..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.html +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Which country are you moving to? -

-
- - -
- - - - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.txt b/test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.txt new file mode 100644 index 00000000000..6c2fb810b2d --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.txt @@ -0,0 +1,234 @@ +Which country are you moving to? + + + + + + * afghanistan: Afghanistan + * albania: Albania + * algeria: Algeria + * american-samoa: American Samoa + * andorra: Andorra + * angola: Angola + * anguilla: Anguilla + * antigua-and-barbuda: Antigua And Barbuda + * argentina: Argentina + * armenia: Armenia + * aruba: Aruba + * australia: Australia + * austria: Austria + * azerbaijan: Azerbaijan + * bahamas: Bahamas + * bahrain: Bahrain + * bangladesh: Bangladesh + * barbados: Barbados + * belarus: Belarus + * belgium: Belgium + * belize: Belize + * benin: Benin + * bermuda: Bermuda + * bhutan: Bhutan + * bolivia: Bolivia + * bonaire-st-eustatius-saba: Bonaire St Eustatius Saba + * bosnia-and-herzegovina: Bosnia And Herzegovina + * botswana: Botswana + * brazil: Brazil + * british-indian-ocean-territory: British Indian Ocean Territory + * british-virgin-islands: British Virgin Islands + * brunei: Brunei + * bulgaria: Bulgaria + * burkina-faso: Burkina Faso + * burma: Burma + * burundi: Burundi + * cambodia: Cambodia + * cameroon: Cameroon + * canada: Canada + * cape-verde: Cape Verde + * cayman-islands: Cayman Islands + * central-african-republic: Central African Republic + * chad: Chad + * chile: Chile + * china: China + * colombia: Colombia + * comoros: Comoros + * congo: Congo + * costa-rica: Costa Rica + * cote-d-ivoire: Cote D Ivoire + * croatia: Croatia + * cuba: Cuba + * curacao: Curacao + * cyprus: Cyprus + * czech-republic: Czech Republic + * democratic-republic-of-congo: Democratic Republic Of Congo + * denmark: Denmark + * djibouti: Djibouti + * dominica: Dominica + * dominican-republic: Dominican Republic + * ecuador: Ecuador + * egypt: Egypt + * el-salvador: El Salvador + * equatorial-guinea: Equatorial Guinea + * eritrea: Eritrea + * estonia: Estonia + * ethiopia: Ethiopia + * falkland-islands: Falkland Islands + * fiji: Fiji + * finland: Finland + * france: France + * french-polynesia: French Polynesia + * gabon: Gabon + * gambia: Gambia + * georgia: Georgia + * germany: Germany + * ghana: Ghana + * gibraltar: Gibraltar + * greece: Greece + * grenada: Grenada + * guatemala: Guatemala + * guernsey: Guernsey + * guinea: Guinea + * guinea-bissau: Guinea Bissau + * guyana: Guyana + * haiti: Haiti + * honduras: Honduras + * hong-kong: Hong Kong + * hungary: Hungary + * iceland: Iceland + * india: India + * indonesia: Indonesia + * iran: Iran + * iraq: Iraq + * ireland: Ireland + * israel: Israel + * italy: Italy + * jamaica: Jamaica + * japan: Japan + * jersey: Jersey + * jordan: Jordan + * kazakhstan: Kazakhstan + * kenya: Kenya + * kiribati: Kiribati + * kosovo: Kosovo + * kuwait: Kuwait + * kyrgyzstan: Kyrgyzstan + * laos: Laos + * latvia: Latvia + * lebanon: Lebanon + * lesotho: Lesotho + * liberia: Liberia + * libya: Libya + * liechtenstein: Liechtenstein + * lithuania: Lithuania + * luxembourg: Luxembourg + * macao: Macao + * macedonia: Macedonia + * madagascar: Madagascar + * malawi: Malawi + * malaysia: Malaysia + * maldives: Maldives + * mali: Mali + * malta: Malta + * marshall-islands: Marshall Islands + * mauritania: Mauritania + * mauritius: Mauritius + * mexico: Mexico + * micronesia: Micronesia + * moldova: Moldova + * monaco: Monaco + * mongolia: Mongolia + * montenegro: Montenegro + * montserrat: Montserrat + * morocco: Morocco + * mozambique: Mozambique + * namibia: Namibia + * nauru: Nauru + * nepal: Nepal + * netherlands: Netherlands + * new-caledonia: New Caledonia + * new-zealand: New Zealand + * nicaragua: Nicaragua + * niger: Niger + * nigeria: Nigeria + * north-korea: North Korea + * norway: Norway + * oman: Oman + * pakistan: Pakistan + * palau: Palau + * panama: Panama + * papua-new-guinea: Papua New Guinea + * paraguay: Paraguay + * peru: Peru + * philippines: Philippines + * pitcairn-island: Pitcairn Island + * poland: Poland + * portugal: Portugal + * qatar: Qatar + * romania: Romania + * russia: Russia + * rwanda: Rwanda + * saint-barthelemy: Saint Barthelemy + * samoa: Samoa + * san-marino: San Marino + * sao-tome-and-principe: Sao Tome And Principe + * saudi-arabia: Saudi Arabia + * senegal: Senegal + * serbia: Serbia + * seychelles: Seychelles + * sierra-leone: Sierra Leone + * singapore: Singapore + * slovakia: Slovakia + * slovenia: Slovenia + * solomon-islands: Solomon Islands + * somalia: Somalia + * south-africa: South Africa + * south-georgia-and-south-sandwich-islands: South Georgia And South Sandwich Islands + * south-korea: South Korea + * south-sudan: South Sudan + * spain: Spain + * sri-lanka: Sri Lanka + * st-helena-ascension-and-tristan-da-cunha: St Helena Ascension And Tristan Da Cunha + * st-kitts-and-nevis: St Kitts And Nevis + * st-lucia: St Lucia + * st-martin: St Martin + * st-pierre-and-miquelon: St Pierre And Miquelon + * st-vincent-and-the-grenadines: St Vincent And The Grenadines + * sudan: Sudan + * suriname: Suriname + * swaziland: Swaziland + * sweden: Sweden + * switzerland: Switzerland + * syria: Syria + * taiwan: Taiwan + * tajikistan: Tajikistan + * tanzania: Tanzania + * thailand: Thailand + * the-occupied-palestinian-territories: The Occupied Palestinian Territories + * timor-leste: Timor Leste + * togo: Togo + * tonga: Tonga + * trinidad-and-tobago: Trinidad And Tobago + * tunisia: Tunisia + * turkey: Turkey + * turkmenistan: Turkmenistan + * turks-and-caicos-islands: Turks And Caicos Islands + * tuvalu: Tuvalu + * uganda: Uganda + * ukraine: Ukraine + * united-arab-emirates: United Arab Emirates + * uruguay: Uruguay + * usa: Usa + * uzbekistan: Uzbekistan + * vanuatu: Vanuatu + * venezuela: Venezuela + * vietnam: Vietnam + * wallis-and-futuna: Wallis And Futuna + * western-sahara: Western Sahara + * yemen: Yemen + * zambia: Zambia + * zimbabwe: Zimbabwe + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.html b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.html deleted file mode 100644 index 4b9efe62960..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Is your employer paying National Insurance contributions for you? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.txt b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.txt new file mode 100644 index 00000000000..2e702ee0a2a --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.txt @@ -0,0 +1,14 @@ +Is your employer paying National Insurance contributions for you? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.html b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.html deleted file mode 100644 index 48f55e99882..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you eligible for Statutory Maternity Pay? -

-
- - - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Maternity benefits
Which country are you moving to? - Afghanistan
Is your employer paying National Insurance contributions for you? - Yes
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.txt b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.txt new file mode 100644 index 00000000000..e8d6ad18f6c --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.txt @@ -0,0 +1,15 @@ +Are you eligible for Statutory Maternity Pay? + +If you're unsure you can read our [Maternity pay and leave guide](/statutory-maternity-pay#eligibility) + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.html b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.html deleted file mode 100644 index f529991b3a8..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you working for a UK employer and paying Class 1 National Insurance Contributions? -

-
- - - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.txt b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.txt new file mode 100644 index 00000000000..29f8ddb24a8 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.txt @@ -0,0 +1,15 @@ +Are you working for a UK employer and paying Class 1 National Insurance Contributions? + +If you're unsure you can read our [National Insurance Guide](/national-insurance/how-much-national-insurance-you-pay). + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.html b/test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.html deleted file mode 100644 index 0d9892cc556..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you working for a UK employer? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.txt b/test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.txt new file mode 100644 index 00000000000..aef7f7a2d4a --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.txt @@ -0,0 +1,14 @@ +Are you working for a UK employer? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.html b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.html deleted file mode 100644 index c72d8432d92..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you or your partner one of the following? -

-
- -

A Crown servant is someone who works for the UK government. A cross-border worker is someone who regularly travels to or from another country to work.

- -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.txt b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.txt new file mode 100644 index 00000000000..eb7b629fa9a --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.txt @@ -0,0 +1,15 @@ +Are you or your partner one of the following? + + + +A Crown servant is someone who works for the UK government. A cross-border worker is someone who regularly travels to or from another country to work. + + * crown_servant: A Crown servant + * cross_border_worker: A cross-border worker + * none_of_the_above: None of the above + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.html b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.html deleted file mode 100644 index c86b5023324..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How long are you going abroad for? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.txt b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.txt new file mode 100644 index 00000000000..8897e40d3cc --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.txt @@ -0,0 +1,14 @@ +How long are you going abroad for? + + + + + + * tax_credits_up_to_a_year: Up to 1 year + * tax_credits_more_than_a_year: More than 1 year or permanently + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.html b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.html deleted file mode 100644 index 26a93ca64d3..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Do you have any children? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Tax credits
Are you or your partner one of the following? - None of the above
How long are you going abroad for? - More than 1 year or permanently
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.txt b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.txt new file mode 100644 index 00000000000..d36397e40fc --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.txt @@ -0,0 +1,14 @@ +Do you have any children? + + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.html b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.html deleted file mode 100644 index 9561914cdc9..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you currently claiming State Pension or any of the following benefits? -

-
-
-
    -
  • Incapacity Benefit
  • -
  • Widow’s Benefit
  • -
  • Bereavement Benefit
  • -
  • Industrial Injuries Disablement Benefit
  • -
  • contribution-based Employment and Support Allowance
  • -
  • Severe Disablement Allowance
  • -
- - -
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Tax credits
Are you or your partner one of the following? - None of the above
How long are you going abroad for? - More than 1 year or permanently
Do you have any children? - Yes
Which country are you moving to? - Austria
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.txt b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.txt new file mode 100644 index 00000000000..8e646a8add6 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.txt @@ -0,0 +1,20 @@ +Are you currently claiming State Pension or any of the following benefits? + +- Incapacity Benefit +- Widow's Benefit +- Bereavement Benefit +- Industrial Injuries Disablement Benefit +- contribution-based Employment and Support Allowance +- Severe Disablement Allowance + + + + + * yes: Yes + * no: No + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.html b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.html deleted file mode 100644 index 208802d01e7..00000000000 --- a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Why are you going abroad? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
-
-

- Previous answers -

- Start again - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Are you currently: - in the UK and planning to move abroad
Which benefit will you be claiming? - Tax credits
Are you or your partner one of the following? - None of the above
How long are you going abroad for? - Up to 1 year
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.txt b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.txt new file mode 100644 index 00000000000..774e4751031 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.txt @@ -0,0 +1,15 @@ +Why are you going abroad? + + + + + + * tax_credits_holiday: A holiday or business trip + * tax_credits_medical_treatment: For medical treatment for yourself, your partner or your child + * tax_credits_death: Because of the death of your partner, child or close family member + + + + + + diff --git a/test/artefacts/uk-benefits-abroad/y.html b/test/artefacts/uk-benefits-abroad/y.html deleted file mode 100644 index 382df4873f2..00000000000 --- a/test/artefacts/uk-benefits-abroad/y.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - UK benefits if you're going or living abroad - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- Are you currently: -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/uk-benefits-abroad/y.txt b/test/artefacts/uk-benefits-abroad/y.txt new file mode 100644 index 00000000000..d6ec94b7b98 --- /dev/null +++ b/test/artefacts/uk-benefits-abroad/y.txt @@ -0,0 +1,14 @@ +Are you currently: + + + + + + * going_abroad: in the UK and planning to move abroad + * already_abroad: someone who has lived and worked in the UK who is now living abroad + + + + + + diff --git a/test/artefacts/vat-payment-deadlines/2015-01-31.html b/test/artefacts/vat-payment-deadlines/2015-01-31.html deleted file mode 100644 index 0da0fa57b28..00000000000 --- a/test/artefacts/vat-payment-deadlines/2015-01-31.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - VAT payment deadline calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- How do you want to pay? -

-
- - -
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- - - - -
-
-
- -
- - -
-
-
-
-
-
- -
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/vat-payment-deadlines/2015-01-31.txt b/test/artefacts/vat-payment-deadlines/2015-01-31.txt new file mode 100644 index 00000000000..bc7f14e7e1d --- /dev/null +++ b/test/artefacts/vat-payment-deadlines/2015-01-31.txt @@ -0,0 +1,19 @@ +How do you want to pay? + + + + + + * direct-debit: Direct debit + * online-telephone-banking: Online or telephone banking (Faster Payments) + * online-debit-credit-card: Online debit or credit card (BillPay) + * bacs-direct-credit: Bacs direct credit + * bank-giro: Bank Giro + * chaps: CHAPS + * cheque: Cheque + + + + + + diff --git a/test/artefacts/vat-payment-deadlines/y.html b/test/artefacts/vat-payment-deadlines/y.html deleted file mode 100644 index 500ee5ac093..00000000000 --- a/test/artefacts/vat-payment-deadlines/y.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - VAT payment deadline calculator - GOV.UK - - - - - - - - -
- - -
-
- - - - -
-
-
-
-

- When does your VAT accounting period end? -

-
- - -
- -
- - -
- - - - -
-
-
- -
- - -
-
-
-
- - -
- -
-
- - -
-
- -
- - diff --git a/test/artefacts/vat-payment-deadlines/y.txt b/test/artefacts/vat-payment-deadlines/y.txt new file mode 100644 index 00000000000..f2bda7020f2 --- /dev/null +++ b/test/artefacts/vat-payment-deadlines/y.txt @@ -0,0 +1,12 @@ +When does your VAT accounting period end? + + + + + + + + + + + diff --git a/test/functional/smart_answers_controller_test.rb b/test/functional/smart_answers_controller_test.rb index ac0b5cb21da..fc94e854668 100644 --- a/test/functional/smart_answers_controller_test.rb +++ b/test/functional/smart_answers_controller_test.rb @@ -202,13 +202,14 @@ def teardown assert response.body.start_with?("Smart answers controller sample") end - should "render not found for a question node" do + should "render govspeak text for a question node" do document = stub('Govspeak::Document', to_html: 'html-output') Govspeak::Document.stubs(:new).returns(document) get :show, id: 'smart-answers-controller-sample', started: 'y', format: "txt" - - assert_response :missing + assert_match(/Do you like chocolate\?/, response.body) + assert_match(/yes\: Yes/, response.body) + assert_match(/no\: No/, response.body) end context "when Rails.application.config.expose_govspeak is not set" do diff --git a/test/regression/smart_answers_regression_test.rb b/test/regression/smart_answers_regression_test.rb index 037bac30be4..6f630815b06 100644 --- a/test/regression/smart_answers_regression_test.rb +++ b/test/regression/smart_answers_regression_test.rb @@ -110,31 +110,30 @@ def teardown_hooks_installed? end should "render and save the first question page" do - get :show, id: flow_name, started: 'y', format: 'html' + get :show, id: flow_name, started: 'y', format: 'txt' assert_response :success - artefact_path = smart_answer_helper.save_output(['y'], response, extension: 'html') + artefact_path = smart_answer_helper.save_output(['y'], response) assert_no_output_diff artefact_path if ENV['ASSERT_EACH_ARTEFACT'].present? end visited_nodes = Set.new responses_and_expected_results.each do |responses_and_expected_node| - next_node = responses_and_expected_node[:next_node] - responses = responses_and_expected_node[:responses] - outcome_node = responses_and_expected_node[:outcome_node] - - if !visited_nodes.include?(next_node) || outcome_node - visited_nodes << next_node - should "render and save output for responses: #{responses.join(', ')}" do - format = outcome_node ? 'txt' : 'html' - get :show, id: flow_name, started: 'y', responses: responses.join('/'), format: format - assert_response :success - - artefact_path = smart_answer_helper.save_output(responses, response, extension: format) - - # Enabling this more than doubles the time it takes to run regression tests - assert_no_output_diff artefact_path if ENV['ASSERT_EACH_ARTEFACT'].present? - end + next_node = responses_and_expected_node[:next_node] + responses = responses_and_expected_node[:responses] + question_node = !responses_and_expected_node[:outcome_node] + + next if question_node && visited_nodes.include?(next_node) + visited_nodes << next_node + + should "render and save output for responses: #{responses.join(', ')}" do + get :show, id: flow_name, started: 'y', responses: responses.join('/'), format: 'txt' + assert_response :success + + artefact_path = smart_answer_helper.save_output(responses, response) + + # Enabling this more than doubles the time it takes to run regression tests + assert_no_output_diff artefact_path if ENV['ASSERT_EACH_ARTEFACT'].present? end end diff --git a/test/unit/question_presenter_test.rb b/test/unit/question_presenter_test.rb index 0eb7d27648b..b262e5e425d 100644 --- a/test/unit/question_presenter_test.rb +++ b/test/unit/question_presenter_test.rb @@ -58,23 +58,16 @@ class QuestionPresenterTest < ActiveSupport::TestCase assert_equal 'body-govspeak', @presenter.body(html: false) end - test '#post_body returns content rendered for post_body block with govspeak processing enabled' do + test '#post_body returns content rendered for post_body block with govspeak processing enabled by default' do @renderer.stubs(:content_for).with(:post_body, html: true).returns('post-body-html') assert_equal 'post-body-html', @presenter.post_body end - test '#options returns options with labels and values' do - question = Question::MultipleChoice.new(nil, :question_name?) - question.option(:option_one) - question.option(:option_two) + test '#post_body returns content rendered for post body block with govspeak processing disabled' do + @renderer.stubs(:content_for).with(:post_body, html: false).returns('post-body-govspeak') - @renderer.stubs(:option_text).with(:option_one).returns('option-one-text') - @renderer.stubs(:option_text).with(:option_two).returns('option-two-text') - presenter = QuestionPresenter.new(question, nil, renderer: @renderer) - - assert_equal %w(option_one option_two), presenter.options.map(&:value) - assert_equal %w(option-one-text option-two-text), presenter.options.map(&:label) + assert_equal 'post-body-govspeak', @presenter.post_body(html: false) end test '#error returns nil if there is no error' do diff --git a/test/unit/question_with_options_presenter_test.rb b/test/unit/question_with_options_presenter_test.rb new file mode 100644 index 00000000000..a305bf5cffc --- /dev/null +++ b/test/unit/question_with_options_presenter_test.rb @@ -0,0 +1,22 @@ +require_relative '../test_helper' + +module SmartAnswer + class QuestionWithOptionsPresenterTest < ActiveSupport::TestCase + setup do + @renderer = stub('renderer') + end + + test '#options returns options with labels and values' do + question = Question::MultipleChoice.new(nil, :question_name?) + question.option(:option_one) + question.option(:option_two) + + @renderer.stubs(:option_text).with(:option_one).returns('option-one-text') + @renderer.stubs(:option_text).with(:option_two).returns('option-two-text') + presenter = QuestionWithOptionsPresenter.new(question, nil, renderer: @renderer) + + assert_equal %w(option_one option_two), presenter.options.map(&:value) + assert_equal %w(option-one-text option-two-text), presenter.options.map(&:label) + end + end +end diff --git a/test/unit/smart_answer_flows/part_year_profit_tax_credits_view_test.rb b/test/unit/smart_answer_flows/part_year_profit_tax_credits_view_test.rb index f0eb1839d76..e58d5407d26 100644 --- a/test/unit/smart_answer_flows/part_year_profit_tax_credits_view_test.rb +++ b/test/unit/smart_answer_flows/part_year_profit_tax_credits_view_test.rb @@ -38,7 +38,7 @@ class PartYearProfitTaxCreditsViewTest < ActiveSupport::TestCase setup do question = @flow.node(:have_you_stopped_trading?) @state = SmartAnswer::State.new(question) - @presenter = QuestionPresenter.new(question, @state) + @presenter = MultipleChoiceQuestionPresenter.new(question, @state) end should 'have options with labels' do @@ -56,7 +56,7 @@ class PartYearProfitTaxCreditsViewTest < ActiveSupport::TestCase question = @flow.node(:do_your_accounts_cover_a_12_month_period?) @state = SmartAnswer::State.new(question) @state.accounting_year_ends_on = Date.parse('2016-04-05') - @presenter = QuestionPresenter.new(question, @state) + @presenter = MultipleChoiceQuestionPresenter.new(question, @state) end should 'display title with interpolated basis_period_ends_on' do @@ -99,7 +99,7 @@ class PartYearProfitTaxCreditsViewTest < ActiveSupport::TestCase question = @flow.node(:did_you_start_trading_before_the_relevant_accounting_year?) @state = SmartAnswer::State.new(question) @state.accounting_year_begins_on = Date.parse('2015-04-06') - @presenter = QuestionPresenter.new(question, @state) + @presenter = MultipleChoiceQuestionPresenter.new(question, @state) end should 'have options with labels' do diff --git a/test/unit/smart_answer_flows/student_finance_forms_view_test.rb b/test/unit/smart_answer_flows/student_finance_forms_view_test.rb index 6e926208bfe..2eda528a42f 100644 --- a/test/unit/smart_answer_flows/student_finance_forms_view_test.rb +++ b/test/unit/smart_answer_flows/student_finance_forms_view_test.rb @@ -11,7 +11,7 @@ class StudentFinanceFormsViewTest < ActiveSupport::TestCase def question_presenter(question_name) question = @flow.node(question_name) state = SmartAnswer::State.new(question) - QuestionPresenter.new(question, state) + MultipleChoiceQuestionPresenter.new(question, state) end context 'when rendering :continuing_student? question' do