Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
testless test
import pytest
from lambda_function import *
def test_lambda_handler():
try:
response = lambda_handler({'Records': []}, {})
except Exception as e:
print(e)
assert True == True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment