Files
sqlalchemy/test/dialect/access.py
T
Mike Bayer c0b5a0446b - updated the naming scheme of the base test classes in test/testlib/testing.py;
tests extend from either TestBase or ORMTest, using additional mixins for
special assertion methods as needed
2008-02-11 00:28:39 +00:00

16 lines
390 B
Python

import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.databases import access
from testlib import *
class BasicTest(TestBase, AssertsExecutionResults):
# 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__":
testenv.main()