mirror of
https://github.com/kairos-io/tpm-helpers.git
synced 2025-07-08 03:58:37 +00:00
14 lines
185 B
Go
14 lines
185 B
Go
|
package tpm_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo/v2"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestTPM(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "TPM Suite")
|
||
|
}
|