mirror of
				https://github.com/platformio/platformio-core.git
				synced 2025-11-04 07:51:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			396 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			396 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Copyright (C) Ivan Kravets <me@ikravets.com>
 | 
						|
# See LICENSE for details.
 | 
						|
 | 
						|
from platformio.commands.settings import cli
 | 
						|
from platformio import app
 | 
						|
 | 
						|
 | 
						|
def test_settings_check(clirunner, validate_cliresult):
 | 
						|
    result = clirunner.invoke(cli, ["get"])
 | 
						|
    validate_cliresult(result)
 | 
						|
    assert len(result.output)
 | 
						|
    for item in app.DEFAULT_SETTINGS.items():
 | 
						|
        assert item[0] in result.output
 |