mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-30 18:22:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			397 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			397 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # SPDX-License-Identifier: AGPL-3.0-or-later
 | |
| # pylint: disable=missing-module-docstring
 | |
| 
 | |
| from tests import SearxTestCase
 | |
| from searx import compat
 | |
| from searx.favicons.config import DEFAULT_CFG_TOML_PATH
 | |
| 
 | |
| 
 | |
| class CompatTest(SearxTestCase):  # pylint: disable=missing-class-docstring
 | |
| 
 | |
|     def test_toml(self):
 | |
|         with DEFAULT_CFG_TOML_PATH.open("rb") as f:
 | |
|             _ = compat.tomllib.load(f)
 |