minor fixes
This commit is contained in:
parent
33b1cbe823
commit
2d74cfb208
3 changed files with 2 additions and 7 deletions
|
@ -1,3 +0,0 @@
|
||||||
# scopes.interfaces
|
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ class IContainer(ITraversable):
|
||||||
"""Store the `value` under the `key`.
|
"""Store the `value` under the `key`.
|
||||||
|
|
||||||
May modify `value` so that the attributes referencing this object
|
May modify `value` so that the attributes referencing this object
|
||||||
and the value object (e.g. `parent´ and `name`) are stored correctly."""
|
and the value object (e.g. `parent` and `name`) are stored correctly."""
|
||||||
|
|
||||||
|
|
||||||
class IReference(Interface):
|
class IReference(Interface):
|
||||||
|
|
|
@ -78,11 +78,9 @@ def test_type(self, config):
|
||||||
storage = config.storageFactory(config.dbschema)
|
storage = config.storageFactory(config.dbschema)
|
||||||
storage.dropTable('types')
|
storage.dropTable('types')
|
||||||
concept.setupCoreTypes(storage)
|
concept.setupCoreTypes(storage)
|
||||||
|
|
||||||
types = storage.getContainer(concept.Type)
|
types = storage.getContainer(concept.Type)
|
||||||
tps = list(types.query())
|
tps = list(types.query())
|
||||||
self.assertEqual(len(tps), 6)
|
self.assertEqual(len(tps), 6)
|
||||||
self.assertEqual(tps[0].name, 'track')
|
|
||||||
|
|
||||||
tfolder = types.queryLast(name='folder')
|
tfolder = types.queryLast(name='folder')
|
||||||
fldrs = list(tfolder.values())
|
fldrs = list(tfolder.values())
|
||||||
|
@ -103,7 +101,7 @@ def test_topic(self, config):
|
||||||
ttopic = types.queryLast(name='topic')
|
ttopic = types.queryLast(name='topic')
|
||||||
self.assertEqual(ttopic.name, 'topic')
|
self.assertEqual(ttopic.name, 'topic')
|
||||||
ftopics.setTarget(ttopic)
|
ftopics.setTarget(ttopic)
|
||||||
self.assertEqual(ftopics.ref, 'type-6')
|
self.assertEqual(ftopics.getTarget().name, 'topic')
|
||||||
|
|
||||||
tp_itc = topic.Topic('itc', data=dict(
|
tp_itc = topic.Topic('itc', data=dict(
|
||||||
title='ITC', description='Information and Communication Technology'))
|
title='ITC', description='Information and Communication Technology'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue