terraform-provider-libvirt/libvirt/util/strconv_test.go

13 lines
213 B
Go

package util
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFormatBoolYesNo(t *testing.T) {
assert.Equal(t, "yes", FormatBoolYesNo(true))
assert.Equal(t, "no", FormatBoolYesNo(false))
}