Commit 3265df55 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

we don't need this code because default_order_root_simulation_rule should already exist.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33497 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1753e782
...@@ -41,7 +41,6 @@ from AccessControl.SecurityManagement import newSecurityManager ...@@ -41,7 +41,6 @@ from AccessControl.SecurityManagement import newSecurityManager
from DateTime import DateTime from DateTime import DateTime
from Testing import ZopeTestCase from Testing import ZopeTestCase
from Products.ERP5.Document.OrderRootSimulationRule import OrderRootSimulationRule
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type.tests.utils import reindex from Products.ERP5Type.tests.utils import reindex
from Products.DCWorkflow.DCWorkflow import ValidationFailed from Products.DCWorkflow.DCWorkflow import ValidationFailed
...@@ -121,12 +120,6 @@ class InventoryAPITestCase(ERP5TypeTestCase): ...@@ -121,12 +120,6 @@ class InventoryAPITestCase(ERP5TypeTestCase):
portal_type='Product') portal_type='Product')
self.item = self.getItemModule().newContent(title='Item') self.item = self.getItemModule().newContent(title='Item')
self.other_item = self.getItemModule().newContent(title='Other Item') self.other_item = self.getItemModule().newContent(title='Other Item')
# create a dummy Rule, to be able to create simulation movements
rule_tool = self.portal.portal_rules
if not hasattr(rule_tool, 'default_order_root_simulation_rule'):
rule_tool._setObject('default_order_root_simulation_rule',
OrderRootSimulationRule('default_order_root_simulation_rule'))
self.getInventory = self.getSimulationTool().getInventory self.getInventory = self.getSimulationTool().getInventory
def _safeTic(self): def _safeTic(self):
......
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