mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 20:12:09 +03:00
19 lines
426 B
Plaintext
19 lines
426 B
Plaintext
# Testing trailing whitespace
|
|
# Response '<p>Hello</p>\n\n'
|
|
|
|
# Testing with a raw string
|
|
# check exactly the whitespace
|
|
# It should produce an assert error
|
|
GET http://localhost:8000/error-assert-newline
|
|
HTTP/1.0 200
|
|
```<p>Hello</p>
|
|
```
|
|
|
|
# TODO
|
|
# Testing with XML
|
|
# Ignore trailing whitespace (semantic comparison)
|
|
# It should not produce an error
|
|
# GET http://localhost:8000/error-assert-newline
|
|
# HTTP/1.0 200
|
|
# <p>Hello</p>
|