Skip to content

Commit

Permalink
Issue #136: fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Jan 31, 2015
1 parent 4258ab9 commit 793573e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ testLoad
Transcript
cr;
show:
'Issue97 testLoad: [1]: ' , (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]).
'Issue97 testLoad: [1]: '
, (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]) printString.
self assert: (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]) == nil.
Transcript
cr;
show:
'Issue97 testLoad: [2]: ' , (Object selectors includes: #'isCypressMockIssue97').
'Issue97 testLoad: [2]: '
, (Object selectors includes: #'isCypressMockIssue97') printString.
self deny: (Object selectors includes: #'isCypressMockIssue97').
Gofer new
disablePackageCache;
Expand All @@ -26,12 +28,14 @@ testLoad
Transcript
cr;
show:
'Issue97 testLoad: [3]: ' , (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]).
'Issue97 testLoad: [3]: '
, (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]) printString.
self deny: (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]) == nil.
Transcript
cr;
show:
'Issue97 testLoad: [4]: ' , (Object selectors includes: #'isCypressMockIssue97').
'Issue97 testLoad: [4]: '
, (Object selectors includes: #'isCypressMockIssue97') printString.
self assert: (Object selectors includes: #'isCypressMockIssue97').
Transcript
cr;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"instance" : {
"setUp" : "dkh 01/31/2015 13:15",
"tearDownPackagesList" : "08/01/2013 18:35",
"testLoad" : "dkh 01/31/2015 13:22" } }
"testLoad" : "dkh 01/31/2015 13:31" } }
Loading

0 comments on commit 793573e

Please sign in to comment.