Skip to content

Commit

Permalink
[issue-106] See if being explicit about smalltalkCI helps.
Browse files Browse the repository at this point in the history
  • Loading branch information
hemalvarambhia committed Jul 6, 2019
1 parent 61c9d13 commit a96d49e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Math-Tests-Accuracy/PMAccuracyTestExample.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ PMAccuracyTestExample >> count [
^count
]

{ #category : #private }
PMAccuracyTestExample >> findKey [
| s m |
s := thisContext sender.
m := s sender method selector .
^(names detect: [:n| m asString endsWith: n] ifNone: [nil])
ifNil: [ ((m = 'initialize') or: [m = 'run:in:with:'])
ifTrue: ['AllTheRest']
ifFalse: [ m := s method selector asString.
self error: m,' called in wrong context'] ]
]

{ #category : #'initialize-release' }
PMAccuracyTestExample >> initialize [
"this is always necessarily the first thing:"
Expand Down

0 comments on commit a96d49e

Please sign in to comment.