Testing Serverless Services

python unit testing of AWS lambda functions using moto.

Vincent Claes
Towards Data Science
5 min readSep 8, 2019

--

Having tests is crucial for the success of any software project. If you are developing an application, you want to write tests that check your applications functionality. With tests, you can add new features or fix bugs and deploy the changed code with some piece of mind. Without tests, you will live in a world full of insecurities and frustrations.

We will test the python functionality of our AWS lambda using the python default test framework unittest and an AWS…

--

--