8 lines
145 B
Python
8 lines
145 B
Python
|
from .service import QueryService
|
||
|
|
||
|
|
||
|
def test_execute():
|
||
|
result = QueryService.execute('a complicated query')
|
||
|
|
||
|
assert result == 'Success'
|