mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-15 05:07:16 -04:00
c0b5a0446b
tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
16 lines
390 B
Python
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()
|