mirror of
				https://github.com/home-assistant/core.git
				synced 2025-10-30 22:19:37 +00:00 
			
		
		
		
	 3eb0c8ddff
			
		
	
	3eb0c8ddff
	
	
	
		
			
			* Add binary sensor tests * Wait for background tasks as well in test_binary_sensor_update_failure * Fix module docstring * Use snapshot_platform, move constants to const.py, do not use snapshot for testing state updates * Use JSON fixtures * Use helper for loading JSON fixtures, remove unneeded mock in setup_integration * Move mocks to pytest markers where possible
		
			
				
	
	
		
			17 lines
		
	
	
		
			473 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			473 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Tests for the Pterodactyl integration."""
 | |
| 
 | |
| from homeassistant.core import HomeAssistant
 | |
| 
 | |
| from tests.common import MockConfigEntry
 | |
| 
 | |
| 
 | |
| async def setup_integration(
 | |
|     hass: HomeAssistant, mock_config_entry: MockConfigEntry
 | |
| ) -> MockConfigEntry:
 | |
|     """Set up Pterodactyl mock config entry."""
 | |
|     mock_config_entry.add_to_hass(hass)
 | |
|     await hass.config_entries.async_setup(mock_config_entry.entry_id)
 | |
|     await hass.async_block_till_done()
 | |
| 
 | |
|     return mock_config_entry
 |