Changeset 335
- Timestamp:
- 04/30/08 20:01:42 (8 months ago)
- Files:
-
- trunk/src/dm/dom/meta.py (modified) (1 diff)
- trunk/src/dm/dom/metatest.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/dm/dom/meta.py
r326 r335 328 328 329 329 330 class MarkdownText(Text): 331 "Models a 'markdown' textual attribute." 332 333 # Todo: Figure out how to render separately from read value? 334 335 pass 336 337 330 338 class Url(String): 331 339 "Models a domain object url attribute." trunk/src/dm/dom/metatest.py
r310 r335 12 12 unittest.makeSuite(TestString), 13 13 unittest.makeSuite(TestText), 14 unittest.makeSuite(TestMarkdownText), 14 15 unittest.makeSuite(TestUrl), 15 16 unittest.makeSuite(TestPassword), … … 103 104 104 105 106 class TestMarkdownText(MetaAttrTestCase): 107 108 fieldClass = dm.dom.meta.MarkdownText 109 typeName = 'MarkdownText' 110 isValueObject = True 111 htmlValue = 'My Text' 112 htmlRepr = 'My Text' 113 domValue = 'My Text' 114 dbValue = 'My Text' 115 116 105 117 class TestUrl(MetaAttrTestCase): 106 118
