E M R

Testing HTTP servers in Go

These days writing automated tests for your software is just as important as any other phase in the development life cycle. In this article, we will go over how I write unit tests for HTTP servers in Go.

  • go
  • net/http
  • testing
Testing Flask apps with Pytest

Testing is just as important as any other phase of the software development life cycle, yet many developers tend to neglect it. In this article, I’ll go through the implementation of some unit tests for a small Flask application.

  • flask
  • pytest
  • unit-testing