A tiny gomega matcher for using quickcheck with ginkgo. Lets you write property-based tests like this:
Describe("maths", func() {
It("should work", func() {
property := func(x, y float64) bool {
return math.Abs(x)+math.Abs(y) >= math.Abs(x)
}
Expect(property).To(quango.Hold())
})
})