efritz/gache

View on GitHub
main_test.go

Summary

Maintainability
A
0 mins
Test Coverage
package gache

import (
    "testing"

    "github.com/aphistic/sweet"
    "github.com/aphistic/sweet-junit"
    . "github.com/onsi/gomega"
)

func TestMain(m *testing.M) {
    RegisterFailHandler(sweet.GomegaFail)

    sweet.Run(m, func(s *sweet.S) {
        s.RegisterPlugin(junit.NewPlugin())

        s.AddSuite(&RedisSuite{})
        s.AddSuite(&MemorySuite{})
        RegisterIntegration(s)
    })
}