[Pkg] The Trunk: KernelTests-bf.284.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 8 00:49:12 UTC 2014


Bert Freudenberg uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-bf.284.mcz

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

Name: KernelTests-bf.284
Author: bf
Time: 8 December 2014, 1:48:44.325 am
UUID: 48e0096d-f7b5-4f85-88e6-25eafcbea100
Ancestors: KernelTests-eem.283

Restore timestamps lost in assignment conversion.

=============== Diff against KernelTests-eem.283 ===============

Item was changed:
  ----- Method: BlockContextTest>>setUp (in category 'running') -----
  setUp
  	super setUp.
  	aBlockContext := [100 at 100 corner: 200 at 200].
  	contextOfaBlockContext := thisContext.!

Item was changed:
  ----- Method: BlockContextTest>>testOneArgument (in category 'tests') -----
  testOneArgument
  	| c |
  	c := OrderedCollection new.
  	c add: 'hello'.
  	[c
  		do: [1 + 2]]
  		ifError: [:err :rcvr | self deny: err = 'This block requires 0 arguments.'].
  	[c
  		do: [:arg1 :arg2 | 1 + 2]]
  		ifError: [:err :rcvr | self deny: err = 'This block requires 2 arguments.'] !

Item was changed:
  ----- Method: CompiledMethodTest>>returnPlusOne: (in category 'examples') -----
  returnPlusOne: anInteger
  	^anInteger + 1. !

Item was changed:
  ----- Method: CompiledMethodTest>>returnTrue (in category 'examples') -----
  returnTrue
  	^true  !



More information about the Packages mailing list