blob: 0aa75930a866ccc4d2d8605ba7fca88b01fa95ce (
plain)
1
2
3
4
5
6
7
8
9
10
|
import testbase
from sqlalchemy import *
from sqlalchemy.databases import access
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
|