1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-29 13:13:46 +01:00
Files
core/tests/components/onedrive/snapshots/test_diagnostics.ambr
Josef Zweck 0681652aec Add diagnostics to onedrive (#139516)
* Add diagnostics to onedrive

* redact PII

* add raw data
2025-02-28 16:18:57 +01:00

32 lines
715 B
Plaintext

# serializer version: 1
# name: test_diagnostics
dict({
'config': dict({
'auth_implementation': 'onedrive',
'folder_id': 'my_folder_id',
'folder_name': 'name',
'token': '**REDACTED**',
}),
'drive': dict({
'drive_type': 'personal',
'id': 'mock_drive_id',
'name': 'My Drive',
'owner': dict({
'application': None,
'user': dict({
'display_name': '**REDACTED**',
'email': '**REDACTED**',
'id': 'id',
}),
}),
'quota': dict({
'deleted': 5,
'remaining': 805306368,
'state': 'nearing',
'total': 5368709120,
'used': 4250000000,
}),
}),
})
# ---