Skip to content

Commit

Permalink
Merge branch 'MarkBind:master' into branch-updateIgnore
Browse files Browse the repository at this point in the history
  • Loading branch information
gerteck authored Feb 14, 2025
2 parents b29722b + 8c817dc commit 175ee89
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-message-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
remind-pr-author:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && !endsWith(github.actor, '[bot]')
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
28 changes: 27 additions & 1 deletion docs/userGuide/syntax/questions.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Optionally, you can provide the reason for the particular option using the `<q-o
{% set mcqQuestion %}
<question type="mcq" header="Which of these **contradicts** the heuristics recommended when creating test cases with multiple inputs?">
<!-- Insert the reason for the option using the reason attribute -->
<q-option reason="This is **correct**. We need to figure out if a positive test case works!">
<q-option reason="This option **does not contradict the heuristics recommended**. We need to figure out if a positive test case works!">
Each valid test input should appear at least once in a test case that doesn’t have any invalid inputs.
</q-option>
<q-option>
Expand Down Expand Up @@ -185,6 +185,32 @@ Optionally, you can provide the reason for the particular option using the `<q-o

<box type="tip" seamless>MCQ questions can have multiple correct options!</box>

{% set mcqQuestionWithMultipleAnswers %}
<question type="mcq" header="Which of these is an example of gathering requirements for a product?">
<!-- Insert the reason for the option using the reason attribute -->
<q-option reason="Studying existing products can unearth shortcomings of existing solutions that can be addressed by a new product" correct>
Product surveys
</q-option>
<q-option reason="Observing users in their natural work environment is a way to uncover product requirements" correct>
Observation
</q-option>
<q-option reason="Assuming user needs directly opposes the idea of identifying the needs the product is made to solve">
User assumptions
</q-option>
<q-option reason="Focus groups can help to understand a specific issue, process, product, advertisement, etc." correct>
Focus groups
</q-option>
<div slot="hint">
There can be more than one correct answer, but only one can be selected!
</div>
</question>
{% endset %}

<include src="codeAndOutput.md" boilerplate >
<variable name="highlightStyle">html</variable>
<variable name="code">{{ mcqQuestionWithMultipleAnswers }}</variable>
</include>

**Checkbox Questions**

{% set checkboxQuestion %}
Expand Down

0 comments on commit 175ee89

Please sign in to comment.