mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-14 12:47:22 -04:00
0b73be7b46
- added sybase dialect test - added sybase and access to generated docs
15 lines
338 B
Python
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()
|