The Trunk: WebClient-Tests-ul.54.mcz

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

The Trunk: WebClient-Tests-ul.54.mcz

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

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

Name: WebClient-Tests-ul.54
Author: ul
Time: 5 February 2018, 11:38:52.347433 pm
UUID: 315f0060-94ed-44aa-b06a-804b499339a3
Ancestors: WebClient-Tests-topa.53

- added tests for md5

=============== Diff against WebClient-Tests-topa.53 ===============

Item was added:
+ ----- Method: WebClientServerTest>>testMD5Digest (in category 'tests - misc') -----
+ testMD5Digest
+
+ #(
+ 'The quick brown fox jumps over the lazy dog' '9e107d9d372bb6826bd81d3542a419d6'
+ 'The quick brown fox jumps over the lazy dog.' 'e4d909c290d0fb1ca068ffaddf22cbd0'
+ '' 'd41d8cd98f00b204e9800998ecf8427e'
+ ) pairsDo: [ :string :expectedHash |
+ self assert: expectedHash equals: (WebUtils md5Digest: string) ]!