July 27, 2015
6:21 a.m.
Am 27.07.2015 um 00:15 schrieb Nicolai Hess <nicolaihess@web.de>:
from the usecase of
self should:[some operation] raise: AnException description: ' a Text'
I would expect that the test asserter would compare ' a Text' with the description of the exception raised. But it does not happen. All this test cases succeed, even if the description is different from the actual exception message. Is this a bug or is the description text only used as a description for failing tests?
description is only displayed if a test fails. It is just to give more context to assertion that failed Norbert