The Inbox: Tests-jar.462.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Tests-jar.462.mcz

commits-2
A new version of Tests was added to project The Inbox:
http://source.squeak.org/inbox/Tests-jar.462.mcz

==================== Summary ====================

Name: Tests-jar.462
Author: jar
Time: 3 May 2021, 12:03:40.642808 pm
UUID: b9dfb879-cfe4-ea46-96c4-fa620bd984c8
Ancestors: Tests-jar.461

Fix indentation of #doubleOuterResignalAsTest. I hope it's right this time :)

=============== Diff against Tests-jar.461 ===============

Item was changed:
  ----- Method: ExceptionTester>>doubleOuterResignalAsTest (in category 'tests') -----
  doubleOuterResignalAsTest
  "ExceptionTester new doubleOuterResignalAsTest"
 
  [[self doSomething.
  MyResumableTestError signal.
  self doYetAnotherThing]
  on: MyResumableTestError
+ do: [:ex | ex outer. self doSomethingExceptional].
+ self doSomethingElse]
+ on: MyResumableTestError
+ do: [:ex | ex resignalAs: MyTestNotification]
- do: [:ex | ex outer. self doSomethingExceptional]. self doSomethingElse]
- on: MyResumableTestError
- do: [:ex | ex resignalAs: MyTestNotification]
  !