mirror of
https://github.com/carlostrub/sisyphus
synced 2024-10-31 09:20:15 +00:00
14 lines
193 B
Go
14 lines
193 B
Go
package main_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestSisyphus(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Sisyphus Suite")
|
|
}
|