Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use text version of question pages as regression test artefacts #2659

Conversation

floehopper
Copy link
Contributor

Description

Trello card: https://trello.com/c/P6tuDjcg

This introduces a text version of question pages and converts all existing regression test artefacts for question pages to the new text version.

Note that we lose a little "end-to-end" test coverage of the "previous answers" section on question pages. However, this was only ever incidental test coverage and it's not the right place to test such functionality. I suggest this is better addressed by making sure we have sufficient coverage before making changes in that area of the code.

Motivation

The idea is to make the regression tests less brittle for question pages, e.g. when @selfthinker is making accessibility improvements to the HTML.

External changes

The new text version of question pages should be accessible in the integration environment, e.g. https://www-origin.integration.publishing.service.gov.uk/calculate-statutory-sick-pay/y.txt

However, the new text version of question pages will not be visible in staging or production environments.

@chrisroos
Copy link
Contributor

I'm starting to review this now.





Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It doesn't look as though date_question options are appearing in the question page artefacts. Is that intentional?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It wasn't intentional. I only included things that were already being rendered in the templates. However, it feels as if we should be rendering the date_question options. I'm going to investigate how hard that will be.

@chrisroos
Copy link
Contributor

I found an example question page artefact for each type of question to help me check the changes:

Aside from the date_question options that I've already asked about, the only other question I have is whether we should display the options (week, month, year) for a salary_question? Maybe it doesn't make sense if the options are always shown?

@floehopper
Copy link
Contributor Author

I've chatted to @chrisroos about the issues he has raised about options for date_question & salary_question not appearing in the new text version of the question page artefacts.

The date_question artefacts are generated using Rails helper methods (i.e. select_day, select_month, select_year) within the app/views/smart_answers/inputs/_date_question.html.erb template. Rendering these options as part of the text version of the artefact would be awkward, because (a) there are up to 3 sets of options to display, and (b) the options to display are not readily available from the DateQuestionPresenter. Given the amount of work involved and the resultant additional complexity in the code, I'm not convinced rendering the options is worthwhile.

The salary_question artefacts are generated from a hard-coded array of strings in the app/views/smart_answers/inputs/_salary_question.html.erb template. We could move the hard-coded options into an options method on SalaryQuestionPresenter - that would mean they would show up in the text version of the artefact. However, there are only 3 instances of salary_question in published flows (all in pay-leave-for-parents) and I believe they are all redundant and in need of removal. Given this and the fact that they are hard-coded options (i.e. how risk of breaking), I'm not convinced rendering the options is worthwhile.

Stepping back slightly, both Chris & I are wondering how useful the question page regression test artefacts are. We might get enough value by changing the regression tests to just check that that each question page renders without an error i.e. stop checking that the content matches exactly.

Anyway, I plan to rebase this against master, resolving conflicts, and force-push in preparation for merging.

I didn't find the original version of code very easy to read. I think this
better expresses the intent.

Note that the diff is best viewed using `--ignore-all-space`.
This brings `post_body` into line with other similar methods.

This will make it simpler to render a text version of a question page.
Previously it was only possible to render a text version of a landing page or an
outcome page.

This will make it possible to generate regression test artefacts for question
pages in text form.

As per the other page types I have not annotated each "attribute" of the
question. And as per the other page types each "attribute" is always rendered
whether or not it is blank. Unfortunately this makes the text version of some
question pages not terribly readable.

However, I think it's more valuable to keep the text version of the three page
types consistent with each other. And this should be good enough to use the new
question page format for regression test artefacts which is what I'm focussed on
at the moment.

Note that I've used bullet points to list any options associated with the
question. This seemed like the simplest way to represent them in text form.
I haven't updated the artefacts themselves in this commit, because I'm planning
to do that using one commit per flow. Although this means that the regression
tests are all failing after this commit, I think the approach will make it
easier to see what's going on.

In making this change I have double-checked that all possible "attributes" for
all question types are included in the text version of a question page:

* title
* body
* hint
* options (each with value & label)
* label
* suffix_label
* post_body

The point of making this change is to make regression test artefacts for
question pages less brittle. However, it's worth noting that in making this
change we are also losing a bit of test coverage for the "previous answers"
section. The latter functionality is tested elsewhere, although perhaps not in
quite such an end-to-end fashion. As long as we are conscious of this when
making changes in this area, I think this is an acceptable risk.
We're now saving all regression test artefacts in their text format.
Since this now always returns `true`, it's no longer necessary.
Since the logic in this method became simpler, I don't think the method is
adding anything; if anything it makes the code harder to follow.
The options for checkbox & multiple-choice questions have `value` & `label`
attributes. This brings country select questions into line.

This will make it simpler to render question options in a text version of a
question page.
I'm about to move the implementation of `QuestionPresenter#optons` onto an
intermediate class. This commit will make that change easier.
Only multiple choice & checkbox questions need the `QuestionPresenter#options`
method. This method doesn't work for other question types, because the
underlying question node doesn't have an `options` method.

I'm planning on pushing the current implementation of
`QuestionPresenter#options` down onto `QuestionWithOptionsPresenter` and
replacing it with an implementation which always returns an empty array. That
way it will always be safe to call the method.
Previously calling `QuestionPresenter#options` for questions with no options
would cause an error. This commit pushes the original implementation down onto
`QuestionWithOptionsPresenter` and replaces it with an implementation which
always returns an empty Array. This means that it should now always be safe to
call the `#options` method on the presenter for any question type.
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/additional-commodity-code/0.html
A test/artefacts/additional-commodity-code/0.txt

D test/artefacts/additional-commodity-code/0/0.html
A test/artefacts/additional-commodity-code/0/0.txt

D test/artefacts/additional-commodity-code/0/0/0.html
A test/artefacts/additional-commodity-code/0/0/0.txt

D test/artefacts/additional-commodity-code/0/0/18.html
A test/artefacts/additional-commodity-code/0/0/18.txt

D test/artefacts/additional-commodity-code/0/0/3.html
A test/artefacts/additional-commodity-code/0/0/3.txt

D test/artefacts/additional-commodity-code/0/0/6.html
A test/artefacts/additional-commodity-code/0/0/6.txt

D test/artefacts/additional-commodity-code/0/0/9.html
A test/artefacts/additional-commodity-code/0/0/9.txt

D test/artefacts/additional-commodity-code/25.html
A test/artefacts/additional-commodity-code/25.txt

D test/artefacts/additional-commodity-code/50.html
A test/artefacts/additional-commodity-code/50.txt

D test/artefacts/additional-commodity-code/75.html
A test/artefacts/additional-commodity-code/75.txt

D test/artefacts/additional-commodity-code/y.html
A test/artefacts/additional-commodity-code/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/am-i-getting-minimum-wage/current_payment.html
A test/artefacts/am-i-getting-minimum-wage/current_payment.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.txt

D test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.html
A test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment.html
A test/artefacts/am-i-getting-minimum-wage/past_payment.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html
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

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html
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

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.0/100.txt

D test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.html
A test/artefacts/am-i-getting-minimum-wage/past_payment/2015-10-01/no/25/1/16.txt

D test/artefacts/am-i-getting-minimum-wage/y.html
A test/artefacts/am-i-getting-minimum-wage/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/benefit-cap-calculator/default.html
A test/artefacts/benefit-cap-calculator/default.txt

D test/artefacts/benefit-cap-calculator/default/yes.html
A test/artefacts/benefit-cap-calculator/default/yes.txt

D test/artefacts/benefit-cap-calculator/default/yes/no.html
A test/artefacts/benefit-cap-calculator/default/yes/no.txt

D test/artefacts/benefit-cap-calculator/default/yes/no/no.html
A test/artefacts/benefit-cap-calculator/default/yes/no/no.txt

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.html
A test/artefacts/benefit-cap-calculator/default/yes/no/no/bereavement.txt

D test/artefacts/benefit-cap-calculator/default/yes/no/no/none.html
A test/artefacts/benefit-cap-calculator/default/yes/no/no/none.txt

D test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.html
A test/artefacts/benefit-cap-calculator/default/yes/no/no/none/50.txt

D test/artefacts/benefit-cap-calculator/future/yes/no/no.html
A test/artefacts/benefit-cap-calculator/future/yes/no/no.txt

D test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.html
A test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.0/single.txt

D test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.html
A test/artefacts/benefit-cap-calculator/future/yes/no/no/none/50.txt

D test/artefacts/benefit-cap-calculator/y.html
A test/artefacts/benefit-cap-calculator/y.txt
…ment)

Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.html
A test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days.txt

D test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.html
A test/artefacts/calculate-agricultural-holiday-entitlement/different-number-of-days/2015-02-01.txt

D test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.html
A test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days.txt

D test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.html
A test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days.txt

D test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.html
A test/artefacts/calculate-agricultural-holiday-entitlement/same-number-of-days/7-days/multiple-employers.txt

D test/artefacts/calculate-agricultural-holiday-entitlement/y.html
A test/artefacts/calculate-agricultural-holiday-entitlement/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-employee-redundancy-pay/2012-01-01.html
A test/artefacts/calculate-employee-redundancy-pay/2012-01-01.txt

D test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.html
A test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21.txt

D test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.html
A test/artefacts/calculate-employee-redundancy-pay/2012-01-01/21/3.txt

D test/artefacts/calculate-employee-redundancy-pay/y.html
A test/artefacts/calculate-employee-redundancy-pay/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-married-couples-allowance/y.html
A test/artefacts/calculate-married-couples-allowance/y.txt

D test/artefacts/calculate-married-couples-allowance/yes.html
A test/artefacts/calculate-married-couples-allowance/yes.txt

D test/artefacts/calculate-married-couples-allowance/yes/no.html
A test/artefacts/calculate-married-couples-allowance/yes/no.txt

D test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.html
A test/artefacts/calculate-married-couples-allowance/yes/no/1955-01-01.txt

D test/artefacts/calculate-married-couples-allowance/yes/yes.html
A test/artefacts/calculate-married-couples-allowance/yes/yes.txt

D test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.html
A test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01.txt

D test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.html
A test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes.txt

D test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.html
A test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.0/5000.txt

D test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.html
A test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.0/yes/10000.txt

D test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.html
A test/artefacts/calculate-married-couples-allowance/yes/yes/1950-01-01/27701.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.html
A test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes.txt

D test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.html
A test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no.txt

D test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.html
A test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02.txt

D test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.html
A test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10.txt

D test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.html
A test/artefacts/calculate-statutory-sick-pay/statutory_adoption_pay,statutory_paternity_pay/yes/no/2013-04-02/2013-04-10/yes.txt

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.html
A test/artefacts/calculate-statutory-sick-pay/statutory_paternity_pay,statutory_adoption_pay.txt

D test/artefacts/calculate-statutory-sick-pay/y.html
A test/artefacts/calculate-statutory-sick-pay/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-your-child-maintenance/pay.html
A test/artefacts/calculate-your-child-maintenance/pay.txt

D test/artefacts/calculate-your-child-maintenance/pay/1_child.html
A test/artefacts/calculate-your-child-maintenance/pay/1_child.txt

D test/artefacts/calculate-your-child-maintenance/pay/1_child/no.html
A test/artefacts/calculate-your-child-maintenance/pay/1_child/no.txt

D test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.html
A test/artefacts/calculate-your-child-maintenance/pay/1_child/no/150.txt

D test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.html
A test/artefacts/calculate-your-child-maintenance/pay/1_child/yes.txt

D test/artefacts/calculate-your-child-maintenance/y.html
A test/artefacts/calculate-your-child-maintenance/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html
A test/artefacts/calculate-your-holiday-entitlement/annualised-hours.txt

D test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.html
A test/artefacts/calculate-your-holiday-entitlement/casual-or-irregular-hours.txt

D test/artefacts/calculate-your-holiday-entitlement/compressed-hours.html
A test/artefacts/calculate-your-holiday-entitlement/compressed-hours.txt

D test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.html
A test/artefacts/calculate-your-holiday-entitlement/compressed-hours/8.txt

D test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.html
A test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week.txt

D test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.html
A test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/full-year.txt

D test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.html
A test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/leaving.txt

D test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.html
A test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting.txt

D test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.html
A test/artefacts/calculate-your-holiday-entitlement/days-worked-per-week/starting/2012-01-01.txt

D test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.html
A test/artefacts/calculate-your-holiday-entitlement/hours-worked-per-week/full-year.txt

D test/artefacts/calculate-your-holiday-entitlement/shift-worker.html
A test/artefacts/calculate-your-holiday-entitlement/shift-worker.txt

D test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.html
A test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year.txt

D test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.html
A test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.0/3.txt

D test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.html
A test/artefacts/calculate-your-holiday-entitlement/shift-worker/full-year/8.txt

D test/artefacts/calculate-your-holiday-entitlement/y.html
A test/artefacts/calculate-your-holiday-entitlement/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/calculate-your-redundancy-pay/2012-01-01.html
A test/artefacts/calculate-your-redundancy-pay/2012-01-01.txt

D test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.html
A test/artefacts/calculate-your-redundancy-pay/2012-01-01/21.txt

D test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.html
A test/artefacts/calculate-your-redundancy-pay/2012-01-01/21/3.txt

D test/artefacts/calculate-your-redundancy-pay/y.html
A test/artefacts/calculate-your-redundancy-pay/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/energy-grants-calculator/help_energy_efficiency.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency.txt

D test/artefacts/energy-grants-calculator/help_energy_efficiency/none.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency/none.txt

D test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency/none/1940s-1984/house.txt

D test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency/none/before-1940/house.txt

D test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995.txt

D test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/flat.txt

D test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.html
A test/artefacts/energy-grants-calculator/help_energy_efficiency/none/on-or-after-1995/house.txt

D test/artefacts/energy-grants-calculator/help_with_fuel_bill.html
A test/artefacts/energy-grants-calculator/help_with_fuel_bill.txt

D test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.html
A test/artefacts/energy-grants-calculator/help_with_fuel_bill/benefits,property/1950-01-01.txt

D 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
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

D test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.html
A test/artefacts/energy-grants-calculator/help_with_fuel_bill/none.txt

D test/artefacts/energy-grants-calculator/y.html
A test/artefacts/energy-grants-calculator/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/estimate-self-assessment-penalties/2011-12.html
A test/artefacts/estimate-self-assessment-penalties/2011-12.txt

D test/artefacts/estimate-self-assessment-penalties/2011-12/online.html
A test/artefacts/estimate-self-assessment-penalties/2011-12/online.txt

D test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.html
A test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07.txt

D test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.html
A test/artefacts/estimate-self-assessment-penalties/2011-12/online/2012-04-07/2013-03-02.txt

D test/artefacts/estimate-self-assessment-penalties/y.html
A test/artefacts/estimate-self-assessment-penalties/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/help-if-you-are-arrested-abroad/y.html
A test/artefacts/help-if-you-are-arrested-abroad/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/inherits-someone-dies-without-will/england-and-wales.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/no/no/no/no/no/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes.txt

D test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.html
A test/artefacts/inherits-someone-dies-without-will/england-and-wales/yes/yes.txt

D test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.html
A test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.html
A test/artefacts/inherits-someone-dies-without-will/northern-ireland/yes/yes/yes.txt

D test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.html
A test/artefacts/inherits-someone-dies-without-will/scotland/no/no/no/no/no/no.txt

D test/artefacts/inherits-someone-dies-without-will/y.html
A test/artefacts/inherits-someone-dies-without-will/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D "test/artefacts/landlord-immigration-check/B1 1PW.html"
A "test/artefacts/landlord-immigration-check/B1 1PW.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no.txt"

D "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.html"
A "test/artefacts/landlord-immigration-check/B1 1PW/yes/yes/no/no/no/eu_eea_switzerland/no/no/no/no/no.txt"

D test/artefacts/landlord-immigration-check/y.html
A test/artefacts/landlord-immigration-check/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/legalisation-document-checker/y.html
A test/artefacts/legalisation-document-checker/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/marriage-abroad/albania.html
A test/artefacts/marriage-abroad/albania.txt

D test/artefacts/marriage-abroad/albania/uk.html
A test/artefacts/marriage-abroad/albania/uk.txt

D test/artefacts/marriage-abroad/albania/uk/partner_british.html
A test/artefacts/marriage-abroad/albania/uk/partner_british.txt

D test/artefacts/marriage-abroad/france.html
A test/artefacts/marriage-abroad/france.txt

D test/artefacts/marriage-abroad/y.html
A test/artefacts/marriage-abroad/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/maternity-paternity-calculator/adoption.html
A test/artefacts/maternity-paternity-calculator/adoption.txt

D test/artefacts/maternity-paternity-calculator/adoption/no.html
A test/artefacts/maternity-paternity-calculator/adoption/no.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06.txt

D test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/adoption/no/2015-04-05/2015-04-06/yes/yes/yes/2015-04-06/2015-01-01.txt

D 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
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

D 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
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

D 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
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

D test/artefacts/maternity-paternity-calculator/maternity.html
A test/artefacts/maternity-paternity-calculator/maternity.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19.txt

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24.txt

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.html
A test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly.txt

D 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
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

D test/artefacts/maternity-paternity-calculator/maternity/2015-01-01/yes/2015-01-01/yes/yes/2014-09-19/2014-07-24/weekly/100.html
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

D test/artefacts/maternity-paternity-calculator/paternity.html
A test/artefacts/maternity-paternity-calculator/paternity.txt

D test/artefacts/maternity-paternity-calculator/paternity/no.html
A test/artefacts/maternity-paternity-calculator/paternity/no.txt

D test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/paternity/no/2015-01-01/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes.html
A test/artefacts/maternity-paternity-calculator/paternity/yes.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.html
A test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01.txt

D test/artefacts/maternity-paternity-calculator/paternity/yes/2015-01-01/2015-01-01/yes/yes/yes/yes/yes/2015-01-01/one_week.html
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D 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
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

D test/artefacts/maternity-paternity-calculator/y.html
A test/artefacts/maternity-paternity-calculator/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/minimum-wage-calculator-employers/current_payment.html
A test/artefacts/minimum-wage-calculator-employers/current_payment.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.txt

D test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.html
A test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment.html
A test/artefacts/minimum-wage-calculator-employers/past_payment.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_charged.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.0/yes_free.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/0.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.0/8.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.0/100.txt

D test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.html
A test/artefacts/minimum-wage-calculator-employers/past_payment/2015-10-01/no/25/1/16.txt

D test/artefacts/minimum-wage-calculator-employers/y.html
A test/artefacts/minimum-wage-calculator-employers/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/overseas-passports/afghanistan.html
A test/artefacts/overseas-passports/afghanistan.txt

D test/artefacts/overseas-passports/afghanistan/renewing_new.html
A test/artefacts/overseas-passports/afghanistan/renewing_new.txt

D test/artefacts/overseas-passports/afghanistan/renewing_old/adult.html
A test/artefacts/overseas-passports/afghanistan/renewing_old/adult.txt

D test/artefacts/overseas-passports/the-occupied-palestinian-territories.html
A test/artefacts/overseas-passports/the-occupied-palestinian-territories.txt

D test/artefacts/overseas-passports/y.html
A test/artefacts/overseas-passports/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/pay-leave-for-parents/y.html
A test/artefacts/pay-leave-for-parents/y.txt

D test/artefacts/pay-leave-for-parents/yes.html
A test/artefacts/pay-leave-for-parents/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000-year.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/no/yes/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes.txt

D test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.html
A test/artefacts/pay-leave-for-parents/yes/2012-02-01/employee/employee/yes/yes/10000.0-year/yes/yes/yes/10000-year.txt

D 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
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

D 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
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
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/pip-checker/y.html
A test/artefacts/pip-checker/y.txt

D test/artefacts/pip-checker/yes.html
A test/artefacts/pip-checker/yes.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/plan-adoption-leave/2015-01-01.html
A test/artefacts/plan-adoption-leave/2015-01-01.txt

D test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.html
A test/artefacts/plan-adoption-leave/2015-01-01/2015-02-08.txt

D test/artefacts/plan-adoption-leave/y.html
A test/artefacts/plan-adoption-leave/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/register-a-birth/afghanistan.html
A test/artefacts/register-a-birth/afghanistan.txt

D test/artefacts/register-a-birth/afghanistan/father/no.html
A test/artefacts/register-a-birth/afghanistan/father/no.txt

D test/artefacts/register-a-birth/afghanistan/mother.html
A test/artefacts/register-a-birth/afghanistan/mother.txt

D test/artefacts/register-a-birth/afghanistan/mother/yes.html
A test/artefacts/register-a-birth/afghanistan/mother/yes.txt

D test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.html
A test/artefacts/register-a-birth/afghanistan/mother/yes/another_country.txt

D test/artefacts/register-a-birth/y.html
A test/artefacts/register-a-birth/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/register-a-death/england_wales.html
A test/artefacts/register-a-death/england_wales.txt

D test/artefacts/register-a-death/england_wales/at_home_hospital.html
A test/artefacts/register-a-death/england_wales/at_home_hospital.txt

D test/artefacts/register-a-death/overseas.html
A test/artefacts/register-a-death/overseas.txt

D test/artefacts/register-a-death/overseas/north-korea.html
A test/artefacts/register-a-death/overseas/north-korea.txt

D test/artefacts/register-a-death/overseas/north-korea/another_country.html
A test/artefacts/register-a-death/overseas/north-korea/another_country.txt

D test/artefacts/register-a-death/y.html
A test/artefacts/register-a-death/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/report-a-lost-or-stolen-passport/abroad.html
A test/artefacts/report-a-lost-or-stolen-passport/abroad.txt

D test/artefacts/report-a-lost-or-stolen-passport/y.html
A test/artefacts/report-a-lost-or-stolen-passport/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/simplified-expenses-checker/y.html
A test/artefacts/simplified-expenses-checker/y.txt

D test/artefacts/simplified-expenses-checker/yes.html
A test/artefacts/simplified-expenses-checker/yes.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van,using_home_for_business/yes/yes/35000.0/35.0/10000/26.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van/no.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van/no.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van/no/no.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van/yes.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.0/35.txt

D test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.html
A test/artefacts/simplified-expenses-checker/yes/car_or_van/yes/yes/35000.txt

D test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.html
A test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500.txt

D test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.html
A test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.0/7500/789.txt

D test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.html
A test/artefacts/simplified-expenses-checker/yes/live_on_business_premises,motorcycle/yes/yes/35000.0/35.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/state-pension-age/age.html
A test/artefacts/state-pension-age/age.txt

D test/artefacts/state-pension-age/age/1949-02-01.html
A test/artefacts/state-pension-age/age/1949-02-01.txt

D test/artefacts/state-pension-age/y.html
A test/artefacts/state-pension-age/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/state-pension-through-partner/married.html
A test/artefacts/state-pension-through-partner/married.txt

D test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.html
A test/artefacts/state-pension-through-partner/married/your_pension_age_after_specific_date/partner_pension_age_before_specific_date.txt

D test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.html
A test/artefacts/state-pension-through-partner/married/your_pension_age_before_specific_date.txt

D test/artefacts/state-pension-through-partner/y.html
A test/artefacts/state-pension-through-partner/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/state-pension-topup/1912-10-12.html
A test/artefacts/state-pension-topup/1912-10-12.txt

D test/artefacts/state-pension-topup/1912-10-12/male.html
A test/artefacts/state-pension-topup/1912-10-12/male.txt

D test/artefacts/state-pension-topup/y.html
A test/artefacts/state-pension-topup/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/student-finance-calculator/2015-2016.html
A test/artefacts/student-finance-calculator/2015-2016.txt

D test/artefacts/student-finance-calculator/2015-2016/uk-full-time.html
A test/artefacts/student-finance-calculator/2015-2016/uk-full-time.txt

D test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.html
A test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home.txt

D 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
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

D test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.html
A test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.0/at-home/100000.txt

D test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.html
A test/artefacts/student-finance-calculator/2015-2016/uk-full-time/6000.txt

D test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.html
A test/artefacts/student-finance-calculator/2015-2016/uk-part-time/6000.txt

D test/artefacts/student-finance-calculator/y.html
A test/artefacts/student-finance-calculator/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/student-finance-forms/uk-full-time.html
A test/artefacts/student-finance-forms/uk-full-time.txt

D test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.html
A test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants.txt

D test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.html
A test/artefacts/student-finance-forms/uk-full-time/apply-loans-grants/year-1617.txt

D test/artefacts/student-finance-forms/uk-part-time.html
A test/artefacts/student-finance-forms/uk-part-time.txt

D test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.html
A test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants.txt

D test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.html
A test/artefacts/student-finance-forms/uk-part-time/apply-loans-grants/year-1617/continuing-student.txt

D test/artefacts/student-finance-forms/y.html
A test/artefacts/student-finance-forms/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/towing-rules/bus.html
A test/artefacts/towing-rules/bus.txt

D test/artefacts/towing-rules/bus/no.html
A test/artefacts/towing-rules/bus/no.txt

D test/artefacts/towing-rules/car-or-light-vehicle.html
A test/artefacts/towing-rules/car-or-light-vehicle.txt

D test/artefacts/towing-rules/car-or-light-vehicle/no.html
A test/artefacts/towing-rules/car-or-light-vehicle/no.txt

D test/artefacts/towing-rules/car-or-light-vehicle/yes.html
A test/artefacts/towing-rules/car-or-light-vehicle/yes.txt

D test/artefacts/towing-rules/large-vehicle.html
A test/artefacts/towing-rules/large-vehicle.txt

D test/artefacts/towing-rules/large-vehicle/no.html
A test/artefacts/towing-rules/large-vehicle/no.txt

D test/artefacts/towing-rules/medium-sized-vehicle.html
A test/artefacts/towing-rules/medium-sized-vehicle.txt

D test/artefacts/towing-rules/medium-sized-vehicle/no.html
A test/artefacts/towing-rules/medium-sized-vehicle/no.txt

D test/artefacts/towing-rules/medium-sized-vehicle/no/no.html
A test/artefacts/towing-rules/medium-sized-vehicle/no/no.txt

D test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.html
A test/artefacts/towing-rules/medium-sized-vehicle/no/no/from-jan-1997.txt

D test/artefacts/towing-rules/medium-sized-vehicle/yes.html
A test/artefacts/towing-rules/medium-sized-vehicle/yes.txt

D test/artefacts/towing-rules/minibus.html
A test/artefacts/towing-rules/minibus.txt

D test/artefacts/towing-rules/minibus/no.html
A test/artefacts/towing-rules/minibus/no.txt

D test/artefacts/towing-rules/minibus/no/no.html
A test/artefacts/towing-rules/minibus/no/no.txt

D test/artefacts/towing-rules/minibus/no/no/no.html
A test/artefacts/towing-rules/minibus/no/no/no.txt

D test/artefacts/towing-rules/y.html
A test/artefacts/towing-rules/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/uk-benefits-abroad/going_abroad.html
A test/artefacts/uk-benefits-abroad/going_abroad.txt

D test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.html
A test/artefacts/uk-benefits-abroad/going_abroad/child_benefit/austria.txt

D test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.html
A test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits.txt

D test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.html
A test/artefacts/uk-benefits-abroad/going_abroad/disability_benefits/permanent/austria.txt

D test/artefacts/uk-benefits-abroad/going_abroad/esa.html
A test/artefacts/uk-benefits-abroad/going_abroad/esa.txt

D test/artefacts/uk-benefits-abroad/going_abroad/iidb.html
A test/artefacts/uk-benefits-abroad/going_abroad/iidb.txt

D test/artefacts/uk-benefits-abroad/going_abroad/income_support.html
A test/artefacts/uk-benefits-abroad/going_abroad/income_support.txt

D test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.html
A test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other.txt

D test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.html
A test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no.txt

D test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.html
A test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/no.txt

D test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.html
A test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes.txt

D test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.html
A test/artefacts/uk-benefits-abroad/going_abroad/income_support/is_under_a_year_other/no/yes/no.txt

D test/artefacts/uk-benefits-abroad/going_abroad/jsa.html
A test/artefacts/uk-benefits-abroad/going_abroad/jsa.txt

D test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.html
A test/artefacts/uk-benefits-abroad/going_abroad/jsa/more_than_a_year.txt

D test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.html
A test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan.txt

D test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.html
A test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/afghanistan/yes.txt

D test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.html
A test/artefacts/uk-benefits-abroad/going_abroad/maternity_benefits/austria.txt

D test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.html
A test/artefacts/uk-benefits-abroad/going_abroad/ssp/austria.txt

D test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.html
A test/artefacts/uk-benefits-abroad/going_abroad/tax_credits.txt

D test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.html
A test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above.txt

D test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.html
A test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year.txt

D test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.html
A test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_more_than_a_year/yes/austria.txt

D test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.html
A test/artefacts/uk-benefits-abroad/going_abroad/tax_credits/none_of_the_above/tax_credits_up_to_a_year.txt

D test/artefacts/uk-benefits-abroad/y.html
A test/artefacts/uk-benefits-abroad/y.txt
Although I haven't checked the detail of each conversion, I have checked that
every question page HTML artefact has been converted to a corresponding
text artefact:

D test/artefacts/vat-payment-deadlines/2015-01-31.html
A test/artefacts/vat-payment-deadlines/2015-01-31.txt

D test/artefacts/vat-payment-deadlines/y.html
A test/artefacts/vat-payment-deadlines/y.txt
@floehopper floehopper force-pushed the use-text-version-of-question-pages-as-regression-test-artefacts branch from f2f015e to 6f6065b Compare July 26, 2016 14:09
@floehopper
Copy link
Contributor Author

I've added an extra commit to update the docs which explain how to view the Govspeak version of pages.

@floehopper floehopper merged commit 1989f6f into master Jul 26, 2016
@floehopper floehopper deleted the use-text-version-of-question-pages-as-regression-test-artefacts branch July 26, 2016 14:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants