trytond-sale_product_stock_.../tests/test_sale_product_stock_shop.py
2015-02-02 13:19:53 +01:00

34 lines
900 B
Python

#!/usr/bin/env python
# This file is part of the sale_product_stock_shop module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.tests.test_tryton import test_depends
import trytond.tests.test_tryton
import unittest
class SaleProductStockShopTestCase(unittest.TestCase):
'Test Sale Product Stock Shop module'
def setUp(self):
trytond.tests.test_tryton.install_module('sale_product_stock_shop')
def test0005views(self):
'''
Test views.
'''
test_view('sale_product_stock_shop')
def test0006depends(self):
'''
Test depends.
'''
test_depends()
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
SaleProductStockTestCase))
return suite