def test_get_summary(self): result = run.get_summary("the_owner", "the_description") assert result == { "owner": "the_owner", "description": "the_description", "success": True } result = run.get_summary("the_owner", None) assert result == {"owner": "the_owner", "success": True}
def test_get_summary(self): result = run.get_summary("the_owner", "the_description") assert result == {"owner": "the_owner", "description": "the_description", "success": True} result = run.get_summary("the_owner", None) assert result == {"owner": "the_owner", "success": True}