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

fix some docstrings


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24959 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent fce3a701
......@@ -729,7 +729,7 @@ class TestPackingListMixin(TestOrderMixin):
def stepAddPackingListContainerLine(self,sequence=None, sequence_list=None, **kw):
"""
Check if simulation movement are disconnected
Add a container line in the packing list
"""
container = sequence.get('container')
container_line = container.newContent(portal_type=self.container_line_portal_type)
......@@ -739,7 +739,8 @@ class TestPackingListMixin(TestOrderMixin):
def stepSetContainerLineSmallQuantity(self,sequence=None, sequence_list=None, **kw):
"""
Check if simulation movement are disconnected
Set a small quantity on the container line, it should not be enough for
the packing list to be packed.
"""
container_line = sequence.get('container_line')
container_line.edit(quantity=self.default_quantity-1)
......@@ -747,7 +748,7 @@ class TestPackingListMixin(TestOrderMixin):
def stepSetContainerLineFullQuantity(self,sequence=None, sequence_list=None,
quantity=None,**kw):
"""
Check if simulation movement are disconnected
Set the full quantity
"""
container_line = sequence.get('container_line')
if quantity is None:
......
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