Ignore:
Timestamp:
4 Aug 2010, 18:35:02 (14 years ago)
Author:
uli
Message:

Update tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.widgets.core/trunk/src/waeup/widgets/core/tests/test_dictwidget.py

    r5296 r5366  
    233233        check_list = (
    234234            'checkbox', 'field.foo.remove_0', 'input', 'field.foo.key.0.bar',
     235                'existing',
     236            'checkbox', 'field.foo.remove_1', 'input', 'field.foo.key.1.bar',
    235237                'second',
    236             'checkbox', 'field.foo.remove_1', 'input', 'field.foo.key.1.bar',
    237                 'existing',
    238238            'submit', 'submit', 'field.foo.add',
    239239            'field.foo.count" value="2"',
     
    261261        self.assertEquals(widget.getInputValue(), {u'second': u'entry'})
    262262        output = widget()
     263        # Entries appear in alphabetical order, sorted by key...
    263264        check_list = (
    264265            'checkbox', 'field.foo.remove_0',
    265             'input', 'field.foo.key.0.bar', 'other',
    266             'input', 'field.foo.value.0.baz', 'entry',
     266            'input', 'field.foo.key.0.bar', 'existing',
     267            'input', 'field.foo.value.0.baz', 'one',
    267268            'checkbox', 'field.foo.remove_1',
    268             'input', 'field.foo.key.1.bar', 'existing',
    269             'input', 'field.foo.value.1.baz', 'one',
     269            'input', 'field.foo.key.1.bar', 'other',
     270            'input', 'field.foo.value.1.baz', 'entry',
    270271            'submit', 'submit', 'field.foo.add',
    271272            'field.foo.count" value="2"',
     
    432433        check_list = ['<ol', 'class=', 'testwidget',
    433434                      '<li', 'entry: two', '</li',
    434                       '<li', 'three: a value', '</li',
    435435                      '<li', 'fourth: entry', '</li',
    436436                      '<li', 'one: entry', '</li',
     437                      '<li', 'three: a value', '</li',
    437438                      '</ol']
    438439        self.verifyResult(self.widget(), check_list, inorder=True)
Note: See TracChangeset for help on using the changeset viewer.