Quick introduction to Ginkgo and Gomega
You'll learn about behavior-driven development (BDD) and two Go libraries - Ginkgo and Gomega, in this lesson.
We'll cover the following...
Ginkgo and Gomega provide a robust and easy-to-use framework for practicing BDD in Go.
What is BDD?
BDD stands for behavior-driven development. The basic idea is to define your system’s behavior at a higher level of abstraction. Often, less technical stakeholders can participate and validate these specifications, which increases the likelihood that the developers actually build a system that meets the requirements. ...