mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 07:03:16 -06:00
17 lines
328 B
Go
17 lines
328 B
Go
|
package state
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestInmemState(t *testing.T) {
|
||
|
TestState(t, &InmemState{state: TestStateInitial()})
|
||
|
}
|
||
|
|
||
|
func TestInmemState_impl(t *testing.T) {
|
||
|
var _ StateReader = new(InmemState)
|
||
|
var _ StateWriter = new(InmemState)
|
||
|
var _ StatePersister = new(InmemState)
|
||
|
var _ StateRefresher = new(InmemState)
|
||
|
}
|