Skip to content
Snippets Groups Projects
Commit 4323f67a authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Add pack step to test scenario using internal shipment

fee9e4e8c864 added this new step.
parent 12201f67
1 merge request!2270Add pack step to test scenario using internal shipment
Pipeline #101073 passed
......@@ -117,6 +117,7 @@
>>> shipment.click('wait')
>>> shipment.click('assign_force')
>>> shipment.click('pack')
>>> shipment.click('ship')
>>> shipment.state
'shipped'
......
......@@ -171,6 +171,7 @@
>>> shipment.state
'assigned'
>>> shipment.click('pack')
>>> shipment.click('ship')
>>> shipment.state
'shipped'
......
......@@ -109,5 +109,5 @@
>>> shipment.locations.append(Location(pallet.id))
>>> shipment.click('wait')
>>> shipment.click('assign_try')
>>> shipment.click('pack')
>>> shipment.click('ship')
......@@ -113,4 +113,6 @@
>>> shipment.click('ship')
>>> shipment.state
'shipped'
>>> pallet.reload()
>>> assertEqual(pallet.parent, shipment.transit_location)
......
......@@ -111,6 +111,7 @@
Ship the shipment::
>>> shipment.effective_start_date = yesterday
>>> shipment.click('pack')
>>> shipment.click('ship')
>>> shipment.state
'shipped'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment