author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 12 May 2010 12:18:48 +0200 | |
branch | stable |
changeset 5518 | ceea458025b9 |
parent 5426 | 0d4853a6e5ee |
child 5556 | 9ab2b4c74baf |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
2 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
3 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
4 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
5 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
6 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
7 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
8 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
9 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
10 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
11 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
12 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
13 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
14 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
15 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
16 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
17 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
18 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1642
diff
changeset
|
19 |
"""unit tests for cubicweb.entities.base module |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1642
diff
changeset
|
20 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1642
diff
changeset
|
21 |
""" |
0 | 22 |
|
23 |
from logilab.common.testlib import unittest_main |
|
24 |
from logilab.common.decorators import clear_cache |
|
25 |
from logilab.common.interface import implements |
|
26 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
27 |
from cubicweb.devtools.testlib import CubicWebTC |
0 | 28 |
|
29 |
from cubicweb import ValidationError |
|
30 |
from cubicweb.interfaces import IMileStone, IWorkflowable |
|
31 |
from cubicweb.entities import AnyEntity |
|
32 |
||
33 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
34 |
class BaseEntityTC(CubicWebTC): |
0 | 35 |
|
36 |
def setup_database(self): |
|
37 |
self.member = self.create_user('member') |
|
1642 | 38 |
|
39 |
||
40 |
||
0 | 41 |
class MetadataTC(BaseEntityTC): |
42 |
||
43 |
def test_creator(self): |
|
44 |
self.login(u'member') |
|
4024
6a14cff373c3
more api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3890
diff
changeset
|
45 |
entity = self.request().create_entity('Bookmark', title=u"hello", path=u'project/cubicweb') |
0 | 46 |
self.commit() |
1642 | 47 |
self.assertEquals(entity.creator.eid, self.member.eid) |
48 |
self.assertEquals(entity.dc_creator(), u'member') |
|
0 | 49 |
|
50 |
def test_type(self): |
|
1642 | 51 |
self.assertEquals(self.member.dc_type(), 'cwuser') |
0 | 52 |
|
1102
054dfee29bfc
some test for meta attributes (XXX should be in yams)
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
53 |
def test_entity_meta_attributes(self): |
054dfee29bfc
some test for meta attributes (XXX should be in yams)
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
54 |
# XXX move to yams |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1358
diff
changeset
|
55 |
self.assertEquals(self.schema['CWUser'].meta_attributes(), {}) |
1642 | 56 |
self.assertEquals(dict((str(k), v) for k, v in self.schema['State'].meta_attributes().iteritems()), |
57 |
{'description_format': ('format', 'description')}) |
|
58 |
||
0 | 59 |
|
60 |
class EmailAddressTC(BaseEntityTC): |
|
61 |
def test_canonical_form(self): |
|
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
62 |
email1 = self.execute('INSERT EmailAddress X: X address "maarten.ter.huurne@philips.com"').get_entity(0, 0) |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
63 |
email2 = self.execute('INSERT EmailAddress X: X address "maarten@philips.com"').get_entity(0, 0) |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
64 |
email3 = self.execute('INSERT EmailAddress X: X address "toto@logilab.fr"').get_entity(0, 0) |
3831
5eb369d24e7d
benefit from the orm for clearer code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3830
diff
changeset
|
65 |
email1.set_relations(prefered_form=email2) |
3206
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
66 |
self.assertEquals(email1.prefered.eid, email2.eid) |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
67 |
self.assertEquals(email2.prefered.eid, email2.eid) |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
68 |
self.assertEquals(email3.prefered.eid, email3.eid) |
0 | 69 |
|
70 |
def test_mangling(self): |
|
3831
5eb369d24e7d
benefit from the orm for clearer code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3830
diff
changeset
|
71 |
email = self.execute('INSERT EmailAddress X: X address "maarten.ter.huurne@philips.com"').get_entity(0, 0) |
0 | 72 |
self.assertEquals(email.display_address(), 'maarten.ter.huurne@philips.com') |
73 |
self.assertEquals(email.printable_value('address'), 'maarten.ter.huurne@philips.com') |
|
74 |
self.vreg.config.global_set_option('mangle-emails', True) |
|
75 |
self.assertEquals(email.display_address(), 'maarten.ter.huurne at philips dot com') |
|
76 |
self.assertEquals(email.printable_value('address'), 'maarten.ter.huurne at philips dot com') |
|
3831
5eb369d24e7d
benefit from the orm for clearer code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3830
diff
changeset
|
77 |
email = self.execute('INSERT EmailAddress X: X address "syt"').get_entity(0, 0) |
0 | 78 |
self.assertEquals(email.display_address(), 'syt') |
79 |
self.assertEquals(email.printable_value('address'), 'syt') |
|
80 |
||
81 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1358
diff
changeset
|
82 |
class CWUserTC(BaseEntityTC): |
1642 | 83 |
|
0 | 84 |
def test_complete(self): |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
85 |
e = self.execute('CWUser X WHERE X login "admin"').get_entity(0, 0) |
0 | 86 |
e.complete() |
87 |
||
88 |
def test_matching_groups(self): |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
89 |
e = self.execute('CWUser X WHERE X login "admin"').get_entity(0, 0) |
0 | 90 |
self.failUnless(e.matching_groups('managers')) |
91 |
self.failIf(e.matching_groups('xyz')) |
|
92 |
self.failUnless(e.matching_groups(('xyz', 'managers'))) |
|
93 |
self.failIf(e.matching_groups(('xyz', 'abcd'))) |
|
94 |
||
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
95 |
def test_dc_title_and_name(self): |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
96 |
e = self.execute('CWUser U WHERE U login "member"').get_entity(0, 0) |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
97 |
self.assertEquals(e.dc_title(), 'member') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
98 |
self.assertEquals(e.name(), 'member') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
99 |
e.set_attributes(firstname=u'bouah') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
100 |
self.assertEquals(e.dc_title(), 'member') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
101 |
self.assertEquals(e.name(), u'bouah') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
102 |
e.set_attributes(surname=u'lôt') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
103 |
self.assertEquals(e.dc_title(), 'member') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
104 |
self.assertEquals(e.name(), u'bouah lôt') |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
105 |
|
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
106 |
def test_allowed_massmail_keys(self): |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
107 |
e = self.execute('CWUser U WHERE U login "member"').get_entity(0, 0) |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
108 |
# Bytes/Password attributes should be omited |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
109 |
self.assertEquals(e.allowed_massmail_keys(), |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
110 |
set(('surname', 'firstname', 'login', 'last_login_time', |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
111 |
'creation_date', 'modification_date', 'cwuri', 'eid')) |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
112 |
) |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
113 |
|
0 | 114 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
115 |
class InterfaceTC(CubicWebTC): |
0 | 116 |
|
117 |
def test_nonregr_subclasses_and_mixins_interfaces(self): |
|
3140
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
118 |
CWUser = self.vreg['etypes'].etype_class('CWUser') |
2660
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
119 |
self.failUnless(implements(CWUser, IWorkflowable)) |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1358
diff
changeset
|
120 |
class MyUser(CWUser): |
0 | 121 |
__implements__ = (IMileStone,) |
1358 | 122 |
self.vreg._loadedmods[__name__] = {} |
4491
a0f48c31b58a
kill register_appobject_class method, simplifying autoregistration. Update test accordingly (test which manually registers object should also properly call there __register__ method). Drop the disable-appobjects config file entry: no one used it since its introduction years ago.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
123 |
self.vreg.register(MyUser) |
2660
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
124 |
self.vreg['etypes'].initialization_completed() |
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
125 |
MyUser_ = self.vreg['etypes'].etype_class('CWUser') |
3206
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
126 |
# a copy is done systematically |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
127 |
self.failUnless(issubclass(MyUser_, MyUser)) |
2660
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
128 |
self.failUnless(implements(MyUser_, IMileStone)) |
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
129 |
self.failUnless(implements(MyUser_, IWorkflowable)) |
3206
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
130 |
# original class should not have beed modified, only the copy |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
131 |
self.failUnless(implements(MyUser, IMileStone)) |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
132 |
self.failIf(implements(MyUser, IWorkflowable)) |
0 | 133 |
|
134 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
135 |
class SpecializedEntityClassesTC(CubicWebTC): |
0 | 136 |
|
137 |
def select_eclass(self, etype): |
|
138 |
# clear selector cache |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
139 |
clear_cache(self.vreg['etypes'], 'etype_class') |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
140 |
return self.vreg['etypes'].etype_class(etype) |
1642 | 141 |
|
0 | 142 |
def test_etype_class_selection_and_specialization(self): |
143 |
# no specific class for Subdivisions, the default one should be selected |
|
144 |
eclass = self.select_eclass('SubDivision') |
|
145 |
self.failUnless(eclass.__autogenerated__) |
|
146 |
#self.assertEquals(eclass.__bases__, (AnyEntity,)) |
|
147 |
# build class from most generic to most specific and make |
|
148 |
# sure the most specific is always selected |
|
1358 | 149 |
self.vreg._loadedmods[__name__] = {} |
0 | 150 |
for etype in ('Company', 'Division', 'SubDivision'): |
151 |
class Foo(AnyEntity): |
|
3450
265331a0920c
use __regid__
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
152 |
__regid__ = etype |
4491
a0f48c31b58a
kill register_appobject_class method, simplifying autoregistration. Update test accordingly (test which manually registers object should also properly call there __register__ method). Drop the disable-appobjects config file entry: no one used it since its introduction years ago.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
153 |
self.vreg.register(Foo) |
0 | 154 |
eclass = self.select_eclass('SubDivision') |
3140
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
155 |
self.failUnless(eclass.__autogenerated__) |
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
156 |
self.failIf(eclass is Foo) |
0 | 157 |
if etype == 'SubDivision': |
3140
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
158 |
self.assertEquals(eclass.__bases__, (Foo,)) |
0 | 159 |
else: |
3140
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
160 |
self.assertEquals(eclass.__bases__[0].__bases__, (Foo,)) |
0 | 161 |
# check Division eclass is still selected for plain Division entities |
162 |
eclass = self.select_eclass('Division') |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
163 |
self.assertEquals(eclass.__regid__, 'Division') |
1642 | 164 |
|
0 | 165 |
if __name__ == '__main__': |
166 |
unittest_main() |