mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-13 09:32:24 -06:00
14 lines
222 B
Go
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)
|
|
}
|