Django

Code

Show
Ignore:
Timestamp:
06/25/08 22:16:55 (5 months ago)
Author:
mtredinnick
Message:

A forgotten file from [7743] (test the new DictWrapper? class).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/regressiontests/datastructures/tests.py

    r7140 r7744  
    126126>>> repr(d) 
    127127"{'other-key': 'once upon a time...'}" 
     128 
     129### DictWrapper ############################################################# 
     130 
     131>>> f = lambda x: "*%s" % x 
     132>>> d = DictWrapper({'a': 'a'}, f, 'xx_') 
     133>>> "Normal: %(a)s. Modified: %(xx_a)s" % d 
     134'Normal: a. Modified: *a' 
     135 
    128136"""