Files
hakurei/internal/rosa/state_test.go
Ophestra 30eb0d6a61 internal/rosa: key metadata by string
For upcoming azalea integration. The API is quite ugly right now to ease migration.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-05-17 15:56:53 +09:00

34 lines
486 B
Go

package rosa_test
import (
"testing"
"hakurei.app/internal/rosa"
)
func TestLoad(t *testing.T) {
t.Parallel()
for _, p := range rosa.Native().Collect() {
t.Run(rosa.Native().MustGet(p).Name, func(t *testing.T) {
t.Parallel()
rosa.Native().Load(rosa.Std, p)
})
}
}
func BenchmarkAll(b *testing.B) {
s := rosa.Native().Clone()
for b.Loop() {
for _, p := range s.Collect() {
s.Load(rosa.Std, p)
}
b.StopTimer()
s.DropCaches("", 0)
b.StartTimer()
}
}