06f78e0083
- Adds interfaces for developers to build handlers that update data in response to log events - Resolves #29
14 lines
191 B
Go
14 lines
191 B
Go
package shared_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestShared(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Shared Suite")
|
|
}
|