trytond-sale_margin/tests/test_sale_margin.py

62 lines
1.6 KiB
Python
Raw Normal View History

2012-07-24 11:56:39 +02:00
#!/usr/bin/env python
#This file is part sale_margin module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
import sys
import os
DIR = os.path.abspath(os.path.normpath(os.path.join(__file__,
'..', '..', '..', '..', '..', 'trytond')))
if os.path.isdir(DIR):
sys.path.insert(0, os.path.dirname(DIR))
import unittest
2013-10-03 14:11:02 +02:00
import doctest
2012-07-24 11:56:39 +02:00
import trytond.tests.test_tryton
2013-04-26 15:00:04 +02:00
from trytond.tests.test_tryton import test_view, test_depends
2013-10-03 14:11:02 +02:00
from trytond.backend.sqlite.database import Database as SQLiteDatabase
2013-04-26 15:00:04 +02:00
2012-07-24 11:56:39 +02:00
class SaleMarginTestCase(unittest.TestCase):
'''
Test Sale Margin module.
'''
def setUp(self):
trytond.tests.test_tryton.install_module('sale_margin')
def test0005views(self):
'''
Test views.
'''
test_view('sale_margin')
def test0006depends(self):
'''
Test depends.
'''
test_depends()
2013-10-03 14:11:02 +02:00
def doctest_dropdb(test):
database = SQLiteDatabase().connect()
cursor = database.cursor(autocommit=True)
try:
database.drop(cursor, ':memory:')
cursor.commit()
finally:
cursor.close()
2012-07-24 11:56:39 +02:00
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
SaleMarginTestCase))
2013-10-03 14:11:02 +02:00
suite.addTests(doctest.DocFileSuite('scenario_sale_margin.rst',
setUp=doctest_dropdb, tearDown=doctest_dropdb, encoding='utf-8',
optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
2012-07-24 11:56:39 +02:00
return suite
if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite())