Skip to content

Commit

Permalink
introduce ginkgo and rewrite all unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
myzhan committed Aug 28, 2023
1 parent e4bb3a6 commit b0d0c4f
Show file tree
Hide file tree
Showing 14 changed files with 1,397 additions and 1,482 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -14,5 +14,7 @@ coverage.txt
mem.pprof
cpu.pprof

cover.out

# sphinx build
docs/build
13 changes: 13 additions & 0 deletions boomer_suite_test.go
@@ -0,0 +1,13 @@
package boomer_test

import (
"testing"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)

func TestBoomer(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Boomer Suite")
}

0 comments on commit b0d0c4f

Please sign in to comment.