update to 1.0.2
This commit is contained in:
10
source/tests/mock_packages/mysql/connector.py
Normal file
10
source/tests/mock_packages/mysql/connector.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Module with mock implementation of interacting with a MySQL server."""
|
||||
|
||||
from .connection import Connection
|
||||
from .error import Error
|
||||
|
||||
|
||||
def connect(*args, **kwargs) -> Connection:
|
||||
"""Mock connect to a MySQL server."""
|
||||
|
||||
return Connection()
|
||||
Reference in New Issue
Block a user