Skip to content

TIDO-600 Clarify tests are optional in output text #8

Merged
merged 1 commit into from
Dec 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions md-query.robot
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Variables variables.py
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${ENTITY_ID_ENCODED}
Dictionary Should Contain Key ${resp.headers} last-modified msg=SHOULD return Last-Modified header

4.1 Conditional Retrieval
4.1 Conditional Retrieval (Optional)
[Tags] optional
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${ENTITY_ID_ENCODED}
${etag}= Get From Dictionary ${resp.headers} ETag
${resp}= Conditional Get Entity baseUrl=${BASE_URL} identifier=${ENTITY_ID_ENCODED} etag=${etag}
Should Be Equal As Strings ${resp.status_code} 304 msg=SHOULD return HTTP status code 304

4.2 Content Caching
4.2 Content Caching (Optional)
[Tags] optional
# "Responders SHOULD include cache control information with successful
# (200 status code) responses, assuming the responder knows when
Expand Down