Commit bdd36dcb authored by Łukasz Nowak's avatar Łukasz Nowak

- used another mixin class name

 - disabled splitted tests for now
 - introduced class name for real test
 - defined file encoding


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21996 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f342fda7
# -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Copyright (c) 2008 Nexedi SARL and Contributors. All Rights Reserved. # Copyright (c) 2008 Nexedi SARL and Contributors. All Rights Reserved.
...@@ -35,7 +36,7 @@ from Products.CMFCore.utils import getToolByName ...@@ -35,7 +36,7 @@ from Products.CMFCore.utils import getToolByName
from testProductionOrder import TestProductionOrderMixin from testProductionOrder import TestProductionOrderMixin
from testPackingList import TestPackingListMixin from testPackingList import TestPackingListMixin
class TestProductionPackingListMixin(TestProductionOrderMixin, TestPackingListMixin, \ class TestProductionPackingReportListMixin(TestProductionOrderMixin, TestPackingListMixin, \
ERP5TypeTestCase): ERP5TypeTestCase):
"""Mixin for testing Production Packing Lists and Production Reports""" """Mixin for testing Production Packing Lists and Production Reports"""
...@@ -146,7 +147,10 @@ class TestProductionPackingListMixin(TestProductionOrderMixin, TestPackingListMi ...@@ -146,7 +147,10 @@ class TestProductionPackingListMixin(TestProductionOrderMixin, TestPackingListMi
self.applied_rule_portal_type) self.applied_rule_portal_type)
self.logMessage("TODO") self.logMessage("TODO")
class TestProductionPackingList(TestProductionPackingListMixin): class TestProductionPackingListReport(TestProductionPackingReportListMixin):
pass
class TestProductionPackingList(TestProductionPackingReportListMixin):
"""Test Production Packing Lists""" """Test Production Packing Lists"""
run_all_test = 1 run_all_test = 1
...@@ -209,6 +213,7 @@ class TestProductionReport(TestProductionPackingList): ...@@ -209,6 +213,7 @@ class TestProductionReport(TestProductionPackingList):
def test_suite(): def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestProductionPackingList)) suite.addTest(unittest.makeSuite(TestProductionPackingListReport))
suite.addTest(unittest.makeSuite(TestProductionReport)) #suite.addTest(unittest.makeSuite(TestProductionPackingList))
#suite.addTest(unittest.makeSuite(TestProductionReport))
return suite return suite
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