The Trunk: Tests-ul.400.mcz

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

The Trunk: Tests-ul.400.mcz

commits-2
Levente Uzonyi uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-ul.400.mcz

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

Name: Tests-ul.400
Author: ul
Time: 14 June 2018, 11:55:26.048374 pm
UUID: 4c2d51f0-2dc3-4f2f-8ba9-87f1ee697845
Ancestors: Tests-ul.399

do not nag the user about setting the author initials #4

=============== Diff against Tests-ul.399 ===============

Item was changed:
  ----- Method: MethodReferenceTest>>setUp (in category 'running') -----
  setUp
  | g p |
  env := Environment withName: 'test'.
  g := self createClass: #Griffle.
  p := self createClass: #Plonk.
+ g compileSilently: 'foo ^ 1'.
- g compile: 'foo ^ 1'.
  g organization classify: #foo under: #accessing.
+ g class compileSilently: 'classFoo ^ 1'.
+ g compileSilently: 'bar ^ 1'.
+ p compileSilently: 'foo ^ 2'.
- g class compile: 'classFoo ^ 1'.
- g compile: 'bar ^ 1'.
- p compile: 'foo ^ 2'.
  self createClass: #Unused.!