mahmoud / glom

☄️ Python's nested data operator (and CLI), for all your declarative restructuring needs. Got data? Glom it! ☄️
https://glom.readthedocs.io
Other
1.88k stars 61 forks source link

Missing assert in test_cli.py #270

Closed Sjord closed 10 months ago

Sjord commented 10 months ago

glom/glom/test/test_cli.py at master · mahmoud/glom

def test_cli_blank(cc):
    res = cc.run(['glom'])
    res.stdout == '{}'

res.stdout == '{}' should probably be assert res.stdout == '{}'