19 lines
309 B
Go
19 lines
309 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestPersistenceToNormalizedProcessor(t *testing.T) {
|
|
t.Parallel()
|
|
ctx, can := context.WithTimeout(context.Background(), time.Second*10)
|
|
defer can()
|
|
|
|
d := NewTestDriver(t)
|
|
process := newPersistenceToNormalizedProcess(d)
|
|
|
|
_, _ = ctx, process
|
|
}
|