mirror of
https://github.com/kairos-io/kcrypt.git
synced 2025-04-27 19:29:09 +00:00
to be used both here (when trying to find the partition UUID using a label) and on the kairos side when updating the file after calling kcrypt to encrypt a partition (which causes the UUID to change). Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
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")
|
|
}
|