mirror of
https://github.com/kairos-io/kcrypt.git
synced 2025-06-04 13:09:56 +00:00
14 lines
228 B
Go
14 lines
228 B
Go
|
package partition_info
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo/v2"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestPartitionINfo(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "PartitionInfo file parser test suite")
|
||
|
}
|