-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2659 from alphagov/use-text-version-of-question-p…
…ages-as-regression-test-artefacts Use text version of question pages as regression test artefacts
- Loading branch information
Showing
809 changed files
with
8,241 additions
and
66,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
2 changes: 1 addition & 1 deletion
2
app/views/smart_answers/inputs/_country_select_question.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)) %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.