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

« back to all changes in this revision

Viewing changes to test/dialect/test_mxodbc.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2011-08-01 23:18:16 UTC
  • mfrom: (1.4.15 upstream) (16.1.14 experimental)
  • Revision ID: james.westby@ubuntu.com-20110801231816-6lx797pi3q1fpqst
Tags: 0.7.2-1
* New upstream release
* Bump minimum required python-mako version to 0.4.1 (closes: 635898)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from sqlalchemy import *
2
 
from sqlalchemy.test.testing import eq_, TestBase
3
 
from sqlalchemy.test import engines
 
2
from test.lib.testing import eq_
 
3
from test.lib import engines
 
4
from test.lib import fixtures
4
5
 
5
6
# TODO: we should probably build mock bases for
6
7
# these to share with test_reconnect, test_parseconnect
35
36
    def close(self):
36
37
        pass
37
38
 
38
 
class MxODBCTest(TestBase):
 
39
class MxODBCTest(fixtures.TestBase):
39
40
 
40
41
    def test_native_odbc_execute(self):
41
42
        t1 = Table('t1', MetaData(), Column('c1', Integer))