Skip to content

Commit

Permalink
Issue #136: heavy duty logging called for ...
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Jan 31, 2015
1 parent ab5eece commit 83a06a6
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
Expand Up @@ -2,13 +2,37 @@ tests
testLoad
| packageName |
packageName := 'Issue97'.
{packageName} do: [ :pn | self deny: (self hasPackage: pn) ].
{packageName}
do: [ :pn |
Transcript
cr;
show: 'Issue97 testLoad: [0]: ' , pn.
self deny: (self hasPackage: pn) ].
Transcript
cr;
show:
'Issue97 testLoad: [1]: ' , (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]).
self assert: (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]) == nil.
Transcript
cr;
show:
'Issue97 testLoad: [2]: ' , (Object selectors includes: #'isCypressMockIssue97').
self deny: (Object selectors includes: #'isCypressMockIssue97').
Gofer new
disablePackageCache;
repository: (self getTestRepository: 'issue97');
package: packageName;
load.
Transcript
cr;
show:
'Issue97 testLoad: [3]: ' , (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]).
self deny: (Smalltalk at: #'CypressMockIssue97' ifAbsent: [ ]) == nil.
self assert: (Object selectors includes: #'isCypressMockIssue97')
Transcript
cr;
show:
'Issue97 testLoad: [4]: ' , (Object selectors includes: #'isCypressMockIssue97').
self assert: (Object selectors includes: #'isCypressMockIssue97').
Transcript
cr;
show: 'Issue97 testLoad: [5]'
Expand Up @@ -4,4 +4,4 @@
"instance" : {
"setUp" : "dkh 01/31/2015 13:15",
"tearDownPackagesList" : "08/01/2013 18:35",
"testLoad" : "08/01/2013 18:46" } }
"testLoad" : "dkh 01/31/2015 13:22" } }

0 comments on commit 83a06a6

Please sign in to comment.