Skip to content

Instantly share code, notes, and snippets.

@peacing
Created July 21, 2020 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peacing/fb214534cd5fbeeb695790435517f38a to your computer and use it in GitHub Desktop.
Save peacing/fb214534cd5fbeeb695790435517f38a to your computer and use it in GitHub Desktop.
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