diff options
| -rwxr-xr-x | test/dialect/mssql.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/dialect/mssql.py b/test/dialect/mssql.py index 4fb918c7f..046fede10 100755 --- a/test/dialect/mssql.py +++ b/test/dialect/mssql.py @@ -1,6 +1,8 @@ import testenv; testenv.configure_for_tests() import re from sqlalchemy import * +from sqlalchemy.orm import * +from sqlalchemy import exceptions from sqlalchemy.sql import table, column from sqlalchemy.databases import mssql from testlib import * @@ -184,6 +186,11 @@ class QueryTest(PersistTest): finally: metadata.drop_all() +class Foo(object): + def __init__(self, **kw): + for k in kw: + setattr(self, k, kw[k]) + class GenerativeQueryTest(PersistTest): __only_on__ = 'mssql' |
