Skip to content

Commit

Permalink
fix test failures.
Browse files Browse the repository at this point in the history
test still expected search pattern to check for implementors.
recently added test used transcript. Can't do that and expect topaz tests to work.

Rowan STON Cypress Tonel tests for GemStone '3.2.15'
554 run, 546 passed, 2 failed, 6 errors
  errors
        RwBrowserToolApiTest>>#testMoveGlobalExtensionSessionMethods
        RwBrowserToolApiTest>>#testNewClassVersion_session_method_unchanged_extension_method_protocol
        RwHybridBrowserToolTest>>#testHybridMoveMethodFromSessionMethodsIntoSessionMethods
        RwHybridBrowserToolTest>>#testHybridMoveMethodIntoSessionMethods
        RwRowanSample2Test>>#testNoMigration_bitbucket
        RwRowanSample2Test>>#testNoMigration_gitlab
  failures
        RwLoadingTest>>#testPoolDictionaryChanges
        RwSymbolDictionaryTest>>#testClassVersioningPatch
  • Loading branch information
ericwinger committed Oct 29, 2018
1 parent 35a5c09 commit fa6dce5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
10 changes: 0 additions & 10 deletions rowan/src/Rowan-Services-Tests/JadeServerTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,6 @@ JadeServerTest >> jadeiteServer [
^JadeServer theJadeiteServer
]

{ #category : 'tests' }
JadeServerTest >> test_JadeitePostLogin [

"Jadeite client method #postLogin:useSocket: sends this code after login to initialize
the Jadeite server. This is a good test that the initialization code isn't broken when
run from a topaz client"

(Rowan jadeServerClassNamed: #JadeServer) theJadeiteServer installTranscript.
]

{ #category : 'tests' }
JadeServerTest >> test_jadeServerCanonicalLocation [

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ RowanAnsweringServiceTest >> test_matchingPattern [
answeringService selectorsMatchingPattern: #($* 'test_matching' ).
self assert: answeringService answer size equals: 0.

randomSymbol := #eeeGads.
answeringService organizer: ClassOrganizer new.
self assert: ('eeeGads' matchPattern: #('eeeGads')). "symbol exists, but no implementors"
answeringService selectorsMatchingPattern: #('eeeGads').
self assert: answeringService answer size equals: 0.
answeringService selectorsMatchingPattern: #($* 'eeeGads' $*).
self assert: answeringService answer size equals: 0.

"sorted result"
answeringService selectorsMatchingPattern: #('size' $*).
self assert: answeringService answer size > 1.
Expand Down

0 comments on commit fa6dce5

Please sign in to comment.