Commit b1365c28 authored by Jérome Perrin's avatar Jérome Perrin

minor style changes

parent 0d255eb4
......@@ -29,6 +29,7 @@
import unittest
from lxml import etree
import textwrap
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from AccessControl.SecurityManagement import newSecurityManager
......@@ -162,11 +163,11 @@ class TestListBox(ERP5TypeTestCase):
portal.portal_skins.custom,
list_method_id,
'selection=None, sort_on=None, **kw',
r"""
if sort_on != [('title', 'ASC'), ('uid', 'ASC')]:
textwrap.dedent(r"""
if sort_on != [('title', 'ASC'), ('uid', 'ASC')]:
raise AssertionError('sort_on is %r' % sort_on)
return []
""")
return []
"""))
# set the listbox to use this as list method
listbox = portal.FooModule_viewFooList.listbox
......@@ -194,12 +195,13 @@ return []
portal.portal_skins.custom,
list_method_id,
'selection=None, dummy_default_param=None, **kw',
"""
if dummy_default_param != 'dummy value':
textwrap.dedent(
"""
if dummy_default_param != 'dummy value':
raise AssertionError('recieved wrong arguments: %s instead of "dummy value"'
% dummy_default_param )
return []
""")
return []
"""))
# set the listbox to use this as list method
listbox = portal.FooModule_viewFooList.listbox
......@@ -584,7 +586,8 @@ return []
renderer.getSelectedColumnList())
# default(no list_style)
self.assertEqual(getListBoxRenderer(listbox).getDefaultDisplayStyle(), getListBoxRenderer(listbox).getListboxDisplayStyle())
self.assertEqual(getListBoxRenderer(listbox).getDefaultDisplayStyle(),
getListBoxRenderer(listbox).getListboxDisplayStyle())
self.assertSameSet([('id', u'ID'), ('title', u'Title'), ('getQuantity', u'Quantity')],
getListBoxRenderer(listbox).getSelectedColumnList())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment