mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-13 20:27:35 -04:00
83eb243124
post-refactor fix for access dialect
11 lines
289 B
Python
11 lines
289 B
Python
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
|