mirror of
https://github.com/searxng/searxng.git
synced 2024-11-06 01:19:31 +00:00
10 lines
193 B
Python
10 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))
|