mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-05 03:35:52 +00:00
13 lines
218 B
Python
13 lines
218 B
Python
|
|
import json
|
||
|
|
from . import data_for_json_file
|
||
|
|
|
||
|
|
|
||
|
|
def test_data_for_json_file():
|
||
|
|
result = data_for_json_file()
|
||
|
|
|
||
|
|
assert isinstance(result, list)
|
||
|
|
|
||
|
|
dumped = json.dumps(result)
|
||
|
|
|
||
|
|
assert isinstance(dumped, str)
|