trytond-babi_reports_stock-old/tests/test_babi_reports_stock.py

24 lines
614 B
Python
Raw Normal View History

2014-02-11 09:33:55 +01:00
#!/usr/bin/env python
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import test_depends
2014-02-11 09:33:55 +01:00
class TestCase(unittest.TestCase):
2014-11-04 17:51:26 +01:00
'Test module'
2014-02-11 09:33:55 +01:00
def setUp(self):
trytond.tests.test_tryton.install_module('babi_reports_stock')
def test0006depends(self):
2014-11-04 17:51:26 +01:00
'Test depends'
2014-02-11 09:33:55 +01:00
test_depends()
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(TestCase))
return suite