mirror of
https://github.com/searxng/searxng
synced 2024-01-01 18:24:07 +00:00
14 lines
308 B
Python
14 lines
308 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import unittest2 as unittest
|
|
from unittest2.util import strclass
|
|
from searx.engines import load_engine
|
|
from searx import settings
|
|
|
|
|
|
class TestEngine(unittest.TestCase):
|
|
|
|
def test_engines(self):
|
|
for engine_data in settings['engines']:
|
|
load_engine(engine_data)
|