[squeak-dev] The Inbox: Regex-Tests-Core-ct.18.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Aug 23 16:28:05 UTC 2021


A new version of Regex-Tests-Core was added to project The Inbox:
http://source.squeak.org/inbox/Regex-Tests-Core-ct.18.mcz

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

Name: Regex-Tests-Core-ct.18
Author: ct
Time: 23 August 2021, 6:28:04.668768 pm
UUID: c1fff7b6-7b19-9a4f-b8cc-6011556e3e96
Ancestors: Regex-Tests-Core-mt.16

Adds regression test for a bug while parsing lookaround-like regexes.

=============== Diff against Regex-Tests-Core-mt.16 ===============

Item was removed:
- ----- Method: RxParserTest>>testLookaroundNullable (in category 'tests') -----
- testLookaroundNullable
- 
- 	self should: ['(?<=a)?b' asRegex] raise: RegexSyntaxError.!

Item was added:
+ ----- Method: RxParserTest>>testLookaroundParser (in category 'tests') -----
+ testLookaroundParser
+ 
+ 	self should: ['(?<=a)?b' asRegex] raise: RegexSyntaxError.
+ 	self should: ['(?<a)b' asRegex] raise: RegexSyntaxError.!



More information about the Squeak-dev mailing list