Files
sqlalchemy/test/dialect/sybase.py
T
Jason Kirtland 0b73be7b46 - sybase cleanups: unused imports, adjusted docstrings, trailing whitespace
- added sybase dialect test
- added sybase and access to generated docs
2007-10-13 20:10:14 +00:00

15 lines
338 B
Python

import testbase
from sqlalchemy import *
from sqlalchemy.databases import sybase
from testlib import *
class BasicTest(AssertMixin):
# A simple import of the database/ module should work on all systems.
def test_import(self):
# we got this far, right?
return True
if __name__ == "__main__":
testbase.main()