Ophestra Umiker
eae3034260
Fortify state store instances was specific to aids due to outdated design decisions carried over from the ego rewrite. That no longer makes sense in the current application, so the interface now enables a single store object to manage all transient state. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
12 lines
172 B
Go
12 lines
172 B
Go
package state_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.ophivana.moe/security/fortify/internal/state"
|
|
)
|
|
|
|
func TestMulti(t *testing.T) {
|
|
testStore(t, state.NewMulti(t.TempDir()))
|
|
}
|