opentofu/internal/states/statemgr/lock_test.go
2023-05-02 15:33:06 +00:00

14 lines
222 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package statemgr
import (
"testing"
)
func TestLockDisabled_impl(t *testing.T) {
var _ Full = new(LockDisabled)
var _ Locker = new(LockDisabled)
}