2017-11-06 20:36:12 +00:00
|
|
|
package history_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
2018-03-27 21:06:12 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
2017-11-06 20:36:12 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-03-27 21:06:12 +00:00
|
|
|
func init() {
|
|
|
|
log.SetOutput(ioutil.Discard)
|
|
|
|
}
|
|
|
|
|
2017-11-06 20:36:12 +00:00
|
|
|
func TestHistory(t *testing.T) {
|
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
RunSpecs(t, "History Suite")
|
|
|
|
}
|