MCMock.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 11 Jul 2023 12:13:27 +0100
branchjv
changeset 1173 e3dd2050492e
parent 1095 87f223484bc3
permissions -rw-r--r--
Update class category to match package name if it does not This is needed because in Squeak / Pharo world package membership is defined by (class) category prefix. This is soo annoying...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1095
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 643
diff changeset
     1
"{ Encoding: utf8 }"
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 643
diff changeset
     2
89
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"{ Package: 'stx:goodies/monticello' }"
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
Object subclass:#MCMock
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	instanceVariableNames:''
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	classVariableNames:''
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
	poolDictionaries:''
643
e372d03c5fbf category change
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
     9
	category:'SCM-Monticello-Mocks'
89
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
!MCMock class methodsFor:'as yet unclassified'!
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
wantsChangeSetLogging
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	^ false
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
! !
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!MCMock class methodsFor:'documentation'!
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
version
643
e372d03c5fbf category change
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMock.st,v 1.4 2012-09-11 21:23:32 cg Exp $'
212
54ee7b09e060 added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 89
diff changeset
    23
!
54ee7b09e060 added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 89
diff changeset
    24
54ee7b09e060 added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 89
diff changeset
    25
version_CVS
643
e372d03c5fbf category change
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    26
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMock.st,v 1.4 2012-09-11 21:23:32 cg Exp $'
212
54ee7b09e060 added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 89
diff changeset
    27
!
54ee7b09e060 added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 89
diff changeset
    28
54ee7b09e060 added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 89
diff changeset
    29
version_SVN
1095
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 643
diff changeset
    30
    ^ '§Id: MCMock.st 5 2010-08-29 07:30:29Z vranyj1 §'
89
5027fb2d5131 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
! !