mirror of
https://github.com/searxng/searxng
synced 2024-11-09 01:10:26 +00:00
11 lines
193 B
Python
11 lines
193 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from searx.testing import SearxTestCase
|
||
|
|
||
|
|
||
|
class UnitTestCase(SearxTestCase):
|
||
|
|
||
|
def test_flask(self):
|
||
|
import flask
|
||
|
self.assertIn('Flask', dir(flask))
|