hpi-swa-lab / SqueakByExample-english

An introductory book about the Squeak/Smalltalk programming system, guiding students and developers through the environment, language, tools, and the Morphic framework by means of a series of examples and exercises.
https://www.lulu.com/shop/patrick-rein-and-christoph-thiede/squeak-by-example-60/paperback/product-8vr2j2.html
Other
24 stars 6 forks source link

Content improvements Robert #90

Closed codeZeilen closed 3 years ago

codeZeilen commented 3 years ago

@LinqLover Have you ever had the following problem in a build:

[] in SBEScreenshotRecorder class>>doesNotUnderstand: #writeTo:building:

Strikes me as kind of odd, given that all other tests ran successfully. (If you do not have any previous encounters with this bug: nevermind, I'll look into it :))

LinqLover commented 3 years ago

@LinqLover Have you ever had the following problem in a build:

[] in SBEScreenshotRecorder class>>doesNotUnderstand: #writeTo:building:

Strikes me as kind of odd, given that all other tests ran successfully. (If you do not have any previous encounters with this bug: nevermind, I'll look into it :))

Sorry, I have not seen this before, but you could make sure that you have not loaded VB-Regex, see #buildingSelectorPattern (also notice the #once in this method). If this does not help, I can take a look at this tomorrow!

codeZeilen commented 3 years ago

Figured it out. The encoding of testShout require a weird escaping of the exclamation mark which leads to another test failure in StringTest. The debugger opens on the testShout test and we can not find our method... :) Will proceed to fix this now.

LinqLover commented 3 years ago

Oh yes, #25 ... 😆