test/MCDictionaryRepositoryTest.st
author mawalch
Mon, 08 Aug 2016 20:13:59 +0200
changeset 1011 dff0d2ee184c
parent 823 5cd3a89d5921
child 1121 c5661215109c
permissions -rw-r--r--
#OTHER by mawalch Fix ridiculously propagated typo.

"{ Package: 'stx:goodies/monticello/test' }"

MCRepositoryTest subclass:#MCDictionaryRepositoryTest
	instanceVariableNames:'dict'
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Tests'
!


!MCDictionaryRepositoryTest methodsFor:'as yet unclassified'!

addVersion: aVersion
	dict at: aVersion info put: aVersion
!

deleteNode: aNode
	dict removeKey: aNode
!

dictionary
	^ dict ifNil: [dict _ Dictionary new]
!

setUp
	repository _  MCDictionaryRepository new dictionary: self dictionary
! !

!MCDictionaryRepositoryTest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/test/MCDictionaryRepositoryTest.st,v 1.2 2013-05-29 00:02:26 vrany Exp $'
! !