initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 22 Nov 2006 14:18:19 +0100
changeset 87 97f5c163eed1
parent 86 eed3e22cac66
child 88 9b0af7ed25cb
initial checkin
MCDirtyPackageInfo.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MCDirtyPackageInfo.st	Wed Nov 22 14:18:19 2006 +0100
@@ -0,0 +1,47 @@
+"{ Package: 'stx:goodies/monticello' }"
+
+PackageInfo subclass:#MCDirtyPackageInfo
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Monticello-Mocks'
+!
+
+
+!MCDirtyPackageInfo class methodsFor:'as yet unclassified'!
+
+initialize
+	[self new register] on: MessageNotUnderstood do: []
+!
+
+wantsChangeSetLogging
+	^ false
+! !
+
+!MCDirtyPackageInfo methodsFor:'as yet unclassified'!
+
+classes
+	^ Array new: 0.
+!
+
+methods
+	^ self mockClassA selectors
+		select: [:ea | ea beginsWith: 'ordinal']
+		thenCollect:
+			[:ea | 
+				MethodReference new 
+					setStandardClass: MCMockClassA 
+					methodSymbol: ea].
+!
+
+packageName
+	^ 'MCDirtyPackage'
+! !
+
+!MCDirtyPackageInfo class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCDirtyPackageInfo.st,v 1.1 2006-11-22 13:18:19 cg Exp $'
+! !
+
+MCDirtyPackageInfo initialize!