mirror of
https://github.com/searxng/searxng
synced 2024-11-05 06:01:05 +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))
|