In my tests, I have a - somewhat longer, multi-line - HTML response containing a date and time. I thought I could use assert_match to compare the expected result '\d{4}-\d{2}-\d{2} \d{2}:\d{2}' with the actual result 'yyyy-mm-dd hh:mm':
assert_match <<END_OF_TEXT, response.body
...
... as at: \d{4}-\d{2}-\d{2} \d{2}:\d{2} UTC
...
END_OF_TEXT
Somehow, it does not seem to be possible to use this syntax to input a regular expression, even using the various possible delimiters for END_OF_TEXT.
The following works nicely: