github.com/opentofu/opentofu@v1.7.1/internal/encryption/registry/lockingencryptionregistry/registry_test.go (about)

     1  // Copyright (c) The OpenTofu Authors
     2  // SPDX-License-Identifier: MPL-2.0
     3  // Copyright (c) 2023 HashiCorp, Inc.
     4  // SPDX-License-Identifier: MPL-2.0
     5  
     6  package lockingencryptionregistry_test
     7  
     8  import (
     9  	"testing"
    10  
    11  	"github.com/opentofu/opentofu/internal/encryption/registry/compliancetest"
    12  	"github.com/opentofu/opentofu/internal/encryption/registry/lockingencryptionregistry"
    13  )
    14  
    15  func TestCompliance(t *testing.T) {
    16  	compliancetest.ComplianceTest(t, lockingencryptionregistry.New)
    17  }