blob: 19cca465bd0cf47bc1dc4960f41f82c65c727fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.databases import sybase
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()
|