~ubuntu-branches/debian/jessie/sqlalchemy/jessie

« back to all changes in this revision

Viewing changes to test/lib/__init__.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski, Jakub Wilk, Piotr Ożarowski
  • Date: 2013-07-06 20:53:52 UTC
  • mfrom: (1.4.23) (16.1.17 experimental)
  • Revision ID: package-import@ubuntu.com-20130706205352-ryppl1eto3illd79
Tags: 0.8.2-1
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Piotr Ożarowski ]
* New upstream release
* Upload to unstable
* Build depend on python3-all instead of -dev, extensions are not built for
  Python 3.X 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""Testing environment and utilities.
2
 
 
3
 
This package contains base classes and routines used by
4
 
the unit tests.   Tests are based on Nose and bootstrapped
5
 
by noseplugin.NoseSQLAlchemy.
6
 
 
7
 
"""
8
 
 
9
 
from test.bootstrap import config
10
 
from test.lib import testing, engines, requires, profiling, pickleable, \
11
 
    fixtures
12
 
from test.lib.schema import Column, Table
13
 
from test.lib.testing import AssertsCompiledSQL, \
14
 
    AssertsExecutionResults, ComparesTables, rowset
15
 
 
16
 
 
17
 
__all__ = ('testing',
18
 
            'Column', 'Table',
19
 
           'rowset','fixtures',
20
 
           'AssertsExecutionResults',
21
 
           'AssertsCompiledSQL', 'ComparesTables',
22
 
           'engines', 'profiling', 'pickleable')
23
 
 
24