You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
942 B
Python
39 lines
942 B
Python
9 years ago
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
flask.testsuite.examples
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
Tests the examples.
|
||
|
|
||
|
:copyright: (c) 2011 by Armin Ronacher.
|
||
|
:license: BSD, see LICENSE for more details.
|
||
|
"""
|
||
|
import os
|
||
|
import unittest
|
||
|
from flask.testsuite import add_to_path
|
||
|
|
||
|
|
||
|
def setup_path():
|
||
|
example_path = os.path.join(os.path.dirname(__file__),
|
||
|
os.pardir, os.pardir, 'examples')
|
||
|
add_to_path(os.path.join(example_path, 'flaskr'))
|
||
|
add_to_path(os.path.join(example_path, 'minitwit'))
|
||
|
|
||
|
|
||
|
def suite():
|
||
|
setup_path()
|
||
|
suite = unittest.TestSuite()
|
||
|
try:
|
||
|
from minitwit_tests import MiniTwitTestCase
|
||
|
except ImportError:
|
||
|
pass
|
||
|
else:
|
||
|
suite.addTest(unittest.makeSuite(MiniTwitTestCase))
|
||
|
try:
|
||
|
from flaskr_tests import FlaskrTestCase
|
||
|
except ImportError:
|
||
|
pass
|
||
|
else:
|
||
|
suite.addTest(unittest.makeSuite(FlaskrTestCase))
|
||
|
return suite
|